使用filter:hue-rotate实现酷炫动效
技术、总结 Mar 22, 2020
实现上面的酷炫动效,使用gif?那就out了。试试CSS中的过滤器filter:hue-rotate吧。
简介
hue-rotate() 通过旋转一个元素和其内容的hue值,来改变其样式。它是一个filter(过滤器)方法。
语法
hue-rotate滤镜支持传角度deg、圈数turn、弧度rad等。
filter: hue-rotate(90deg);
filter: hue-rotate(0.5turn);
filter: hue-rotate(3.142rad);
滤镜与动效
要想实现文章一开始的动效,可以使用hue-rotate结合animation。
.bird {
animation: pulse 5s linear infinite;
}
@keyframes pulse {
from { filter: hue-rotate(0); }
to { filter: hue-rotate(360deg); }
}
兼容性
现代浏览器基本都支持。
注: