I am developing a product. I made a flash of lightning. This animation works great on chrome. But there is no animation on Safari. Is this problem caused by background-blend-mode or another thing?
Code:
.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;
}
}