【发布时间】:2021-01-30 22:19:57
【问题描述】:
我正在开发一种产品。我做了一道闪电。这个动画在 chrome 上效果很好。但是 Safari 上没有动画。这个问题是由 background-blend-mode 还是其他原因引起的?
代码:
.block-2 {
-webkit-animation-name: thund;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
background-blend-mode: normal;
background-image:url(thunder.png), url(red-bg.jpg);
background-position: 99%, 100%;
background-repeat: no-repeat;
}
@keyframes thund {
0% { background-blend-mode: normal;
}
100% { background-blend-mode: hue;
}
}
@-webkit-keyframes thund {
0% { background-blend-mode: normal;
;}
100% { background-blend-mode: hue;
}
}
【问题讨论】:
-
您能否将其创建为 sn-p 并上传您的图片?
标签: css safari webkit css-animations background-blend-mode