core114
core114

Reputation: 5335

Html CSS put fireworks images animated not working

I put the html css fireworks image on the image zoom animated effect (like a fireworks ), but its not working, any solution for this

Thanks

.slide2 {
  position: absolute;
  top: 52%;
  right: 25%;
  z-index: 2;
  animation: zoomIn 3000ms infinite ease;
  -webkit-animation: zoomIn 3000ms infinite ease;
}

@-webkit-keyframes zoomIn {
    0% {transform: scale(1);}
    50% {transform: scale(1.5);}
    100% {transform: scale(1);}
}
<span class="slide2" style="transform: matrix3d(0.7167, 0, 0, 0, 0, 0.7167, 0, 0, 0, 0, 0.7167, 0, -14.9212, 4.5442, 0, 1);"><img src="http://brotherslab.thesoftking.com/html/lotten/demo/assets/images/shape/star.png" alt="banner-shape"></span>

Upvotes: 0

Views: 710

Answers (0)

Related Questions