Created
March 3, 2015 01:30
-
-
Save sakamer71/cf57b90e7c34c1504061 to your computer and use it in GitHub Desktop.
animated gif on mouseover
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head lang="en"> | |
<meta charset="UTF-8"> | |
<title>Animated Gif Test</title> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> | |
<script type="text/javascript"> | |
$(document).ready(function() | |
{ | |
$("#imgAnimate1").hover( | |
function() | |
{ | |
$(this).attr("src", "banana.gif"); | |
}, | |
function() | |
{ | |
$(this).attr("src", "banana.png"); | |
}); | |
}); | |
</script> | |
</head> | |
<body> | |
<h1>Check out my Dancing Banana!!</h1> | |
<img id="imgAnimate1" src="banana.png" alt="" > | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment