hexo-theme-stellar/source/css/_plugins/lazyload.styl

15 lines
342 B
Stylus
Raw Normal View History

2021-02-24 21:27:31 +08:00
if hexo-config('plugins.lazyload.blurIn') == true
img.lazyload:not(.placeholder)
2021-02-24 22:07:32 +08:00
trans2pro: transform 1s filter 0.25s
2021-02-24 21:27:31 +08:00
&:not(.loaded)
filter blur(8px)
&.loaded
filter none
else
img.lazyload:not(.placeholder)
2021-02-24 22:07:32 +08:00
trans2pro: transform 1s opacity 0.5s
2021-02-24 21:27:31 +08:00
&:not(.loaded)
opacity: 0
&.loaded
opacity: 1