diff --git a/css/bgzy.css b/css/bgzy.css new file mode 100644 index 0000000..0c30ea0 --- /dev/null +++ b/css/bgzy.css @@ -0,0 +1,35 @@ +/** + * bgzy.js vX.X.X + * + * Copyright(c) Nino Camdzic 2016 + * Released under MIT license. + */ + .bgzy .bg { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + opacity: 1.0; + background-repeat: no-repeat; + background-position: center; + background-size: cover; + background-attachment: fixed; +} + +.bgzy .ticker { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 5px; + background-color: rgba(255,255,255,0.5); +} + +.bgzy .ticker.transition { + transition-property: width; +} + +.bgzy .ticker.transition.trigger { + width: 0; +}