作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想为 CSS 蒙版图像的“蒙版位置”属性设置动画。蒙版图像本身是一个简单的渐变,我的预期行为是通过更改蒙版位置的值,我可以使背景对象从左到右淡入。但是,是否可以为该属性设置动画?如果没有,是否有解决方法?
.header-image figure {
mask-image: url("http://thehermitcrab.org/wp-content/themes/the-hermit-theme/images/gradient-mask-straight.png");
animation: clip-fade 3s;
}
@keyframes clip-fade {
0% {mask-position: 100% 0%;}
100% {mask-position: 0% 0%;}
}
<div class="header-image">
<figure>
<img src="https://thehermitcrab.org/wp-content/themes/the-hermit-theme/images/footer/crab-footer-chalk-logo.png"/>
</figure>
</div>
最佳答案
不确定您想要执行哪种动画,但由于它是一个简单的渐变,因此无需考虑图像。只需定义渐变,然后您必须定义大小才能正确设置动画。
这是一个基本的例子
.header-image figure {
-webkit-mask-image: linear-gradient(to right, transparent, #fff, transparent);
-webkit-mask-size: 300% 100%;
mask-image: linear-gradient(to right, transparent, #fff, transparent);
mask-size: 300% 100%;
animation: clip-fade 3s infinite alternate;
}
img {
max-width: 100%;
}
@keyframes clip-fade {
100% {
-webkit-mask-position: right;
mask-position: right;
}
}
body {
background: red;
}
<div class="header-image">
<figure>
<img src="/image/lkGW7.png" />
</figure>
</div>
关于css - 是否可以为 CSS 蒙版图像设置动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60359212/
我是一名优秀的程序员,十分优秀!