css - Exploding animation using css3. -
i'm new site , coding. trying find out how create exploding image on hover using css or css3. can tell me if possible. comments great.
if want break multiple pieces when ‘exploding’, don't think can css3. if, on other hand, consider making large ‘exploding’, doable:
img { transition: 0.5s; } img:hover { opacity: 0; transform: scale(3) rotate(10deg); }
try it. okay, guess that's not of explosion, oh well
Comments
Post a Comment