Skip to content

Commit

Permalink
fix: improve LQIP transition effect, fix #212
Browse files Browse the repository at this point in the history
  • Loading branch information
selul committed Jan 14, 2020
1 parent 07bf4b9 commit 946e16c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion inc/admin.php
Expand Up @@ -90,7 +90,15 @@ public function inline_bootstrap_script() {
-o-transition: .2s filter linear, .2s opacity linear, .2s border-radius linear;
}
img[data-opt-src]:not([data-opt-lazy-loaded]) {
opacity: .75;
opacity: .75;
-webkit-filter: blur(8px);
-moz-filter: blur(8px);
-o-filter: blur(8px);
-ms-filter: blur(8px);
filter: blur(8px);
transform: scale(1.04);
animation: 0.1s ease-in;
-webkit-transform: translate3d(0, 0, 0);
}
</style>
Expand Down

0 comments on commit 946e16c

Please sign in to comment.