Changeset 1515378
- Timestamp:
- 10/15/2016 01:28:38 PM (9 years ago)
- Location:
- better-image-loading
- Files:
-
- 4 edited
-
tags/0.2.0/assets/dist/css/bil-styles.css (modified) (3 diffs)
-
tags/0.2.0/assets/scss/bil-styles.scss (modified) (3 diffs)
-
trunk/assets/dist/css/bil-styles.css (modified) (3 diffs)
-
trunk/assets/scss/bil-styles.scss (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
better-image-loading/tags/0.2.0/assets/dist/css/bil-styles.css
r1515353 r1515378 4 4 .bil-placeholder { 5 5 background-color: transparent; 6 background-size: 100% 100%; 6 7 background-size: cover; 7 8 background-repeat: no-repeat; … … 17 18 box-sizing: border-box; 18 19 opacity: 1; 20 -webkit-transition: opacity 0.2s linear; 21 -moz-transition: opacity 0.2s linear; 22 -ms-transition: opacity 0.2s linear; 23 -o-transition: opacity 0.2s linear; 19 24 transition: opacity 0.2s linear; 20 25 max-width: 100%; } … … 22 27 opacity: 0; } 23 28 .bil-placeholder .bil-full-size { 29 -webkit-transition: opacity 0.2s linear; 30 -moz-transition: opacity 0.2s linear; 31 -ms-transition: opacity 0.2s linear; 32 -o-transition: opacity 0.2s linear; 24 33 transition: opacity 0.2s linear; 25 34 position: absolute; -
better-image-loading/tags/0.2.0/assets/scss/bil-styles.scss
r1515353 r1515378 2 2 Styles 3 3 ====================================================*/ 4 5 @mixin transition($property, $speed) {6 -webkit-transition: $property $speed ease-in-out;7 -moz-transition: $property $speed ease-in-out;8 -ms-transition: $property $speed ease-in-out;9 -o-transition: $property $speed ease-in-out;10 transition: $property $speed ease-in-out;11 }12 4 13 5 .bil-placeholder { … … 28 20 box-sizing: border-box; 29 21 opacity:1; 30 @include transition(opacity 0.2s); 22 -webkit-transition: opacity 0.2s linear; 23 -moz-transition: opacity 0.2s linear; 24 -ms-transition: opacity 0.2s linear; 25 -o-transition: opacity 0.2s linear; 26 transition: opacity 0.2s linear; 31 27 32 28 max-width:100%; … … 38 34 39 35 .bil-full-size { 40 @include transition(opacity 0.2s); 36 -webkit-transition: opacity 0.2s linear; 37 -moz-transition: opacity 0.2s linear; 38 -ms-transition: opacity 0.2s linear; 39 -o-transition: opacity 0.2s linear; 40 transition: opacity 0.2s linear; 41 41 position:absolute; 42 42 opacity: 0; -
better-image-loading/trunk/assets/dist/css/bil-styles.css
r1515353 r1515378 4 4 .bil-placeholder { 5 5 background-color: transparent; 6 background-size: 100% 100%; 6 7 background-size: cover; 7 8 background-repeat: no-repeat; … … 17 18 box-sizing: border-box; 18 19 opacity: 1; 20 -webkit-transition: opacity 0.2s linear; 21 -moz-transition: opacity 0.2s linear; 22 -ms-transition: opacity 0.2s linear; 23 -o-transition: opacity 0.2s linear; 19 24 transition: opacity 0.2s linear; 20 25 max-width: 100%; } … … 22 27 opacity: 0; } 23 28 .bil-placeholder .bil-full-size { 29 -webkit-transition: opacity 0.2s linear; 30 -moz-transition: opacity 0.2s linear; 31 -ms-transition: opacity 0.2s linear; 32 -o-transition: opacity 0.2s linear; 24 33 transition: opacity 0.2s linear; 25 34 position: absolute; -
better-image-loading/trunk/assets/scss/bil-styles.scss
r1515353 r1515378 2 2 Styles 3 3 ====================================================*/ 4 5 @mixin transition($property, $speed) {6 -webkit-transition: $property $speed ease-in-out;7 -moz-transition: $property $speed ease-in-out;8 -ms-transition: $property $speed ease-in-out;9 -o-transition: $property $speed ease-in-out;10 transition: $property $speed ease-in-out;11 }12 4 13 5 .bil-placeholder { … … 28 20 box-sizing: border-box; 29 21 opacity:1; 30 @include transition(opacity 0.2s); 22 -webkit-transition: opacity 0.2s linear; 23 -moz-transition: opacity 0.2s linear; 24 -ms-transition: opacity 0.2s linear; 25 -o-transition: opacity 0.2s linear; 26 transition: opacity 0.2s linear; 31 27 32 28 max-width:100%; … … 38 34 39 35 .bil-full-size { 40 @include transition(opacity 0.2s); 36 -webkit-transition: opacity 0.2s linear; 37 -moz-transition: opacity 0.2s linear; 38 -ms-transition: opacity 0.2s linear; 39 -o-transition: opacity 0.2s linear; 40 transition: opacity 0.2s linear; 41 41 position:absolute; 42 42 opacity: 0;
Note: See TracChangeset
for help on using the changeset viewer.