-2
<html>
<style>
#dv{
border:1px solid red;
background:#344;
width:80px;
height:80px;
animation:bloco 0.5s ease 1;
}
@keyframes bloco{
from{transform:scale(0.0)}to {transform:scale(0.6)}
}
}
</style>
<body>
<div id = "dv"></div>
<script>
var pegar = document.getElementById("dv");
pegar.style.transform = "scale(0,0)";
if(pegar.style.scale == 0.0){
alert(scale);
}
</script>
</body>
</html>
Thanks tomasantunes
– Danilo Santos