0
Crear boton para Activar keyframe en css con javascript sin jquery
Hola gente, no tengo mas que agregar que lo que dice el titulo,gracias por responder
1 Resposta
0
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<style>
/*
Example css
*/
@keyframes effect{
50%{
Opacity:0;
}
}
</style>
<script>
function blink(){
let x =document.getElementById("eff")
x.style.animation="effect 1s infinite"
}
</script>
</head>
<body>
<button id="eff" onClick="blink()">Click Here</button>
</body>
</html>