Creare una ICONA manina animata





https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_animate_hand


<!DOCTYPE html>
<html>
<style>
#div1 {
font-size:48px;
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<body>

<div id="div1" class="fa"></div>

<script>
function hand() {
var a;
a = document.getElementById("div1");
a.innerHTML = "";
setTimeout(function () {
a.innerHTML = "";
}, 500);
setTimeout(function () {
a.innerHTML = "";
}, 1000);
setTimeout(function () {
a.innerHTML = "";
}, 1500);
}
hand();
setInterval(hand, 2000);
</script>

<p>This example demonstrates how to use an icon library to make an animated effect.</p>
</body>
</html>










( creareunaiconamaninaanimata.html )- by Paolo Puglisi - Modifica del 17/12/2023