Skip to content

Instantly share code, notes, and snippets.

@sakamer71
Created March 3, 2015 01:30
Show Gist options
  • Save sakamer71/cf57b90e7c34c1504061 to your computer and use it in GitHub Desktop.
Save sakamer71/cf57b90e7c34c1504061 to your computer and use it in GitHub Desktop.
animated gif on mouseover
<!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