CSS ANIMATION CREATION @Dr Tech |HTML| CSS| JS| WEBSITE

HTML COODING AND JS

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<meta name="viewport" content="width=device-width, initial-scale=1">

<title>WELCOME TO MAKE ANIMATION IMAGE</title>

<script src="test.js"></script>

<script>

$(document).ready(function(){

$("button").click(function(){

$("#abc").animate({left:'450px'});

$("#abc").animate({top:'450px'});

$("#abc").animate({top:'70px'});

$("#abc").animate({left:'10px'});

});

});

</script>

</head>

<body bgcolor="skyblue">

<button>Start Animation</button>


<br><br>

<img src="images/ddd.gif" width="300" height="300" id="abc" style="position: absolute;">


</body>

</html>

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.