Side navigation
Ticket #2086: test-2086.html
File test-2086.html, 0.6 KB (added by dmethvin, August 11, 2010 11:25PM UTC)
<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js" type="text/javascript"></script>
<style>
#test {
font-size:1.2em;
background: #fd8;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$('#test').mouseover(function() {
$('#test').animate({fontSize:'1.8em'},200);
});
$('#test').mouseout(function() {
$('#test').animate({fontSize:'1.2em'},200);
});
});
</script>
</head>
<body>
<div id="test" href="http://www.google.com">Test</div>
</body>
</html>
Download in other formats:
Original Format
File test-2086.html, 0.6 KB (added by dmethvin, August 11, 2010 11:25PM UTC)
<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js" type="text/javascript"></script>
<style>
#test {
font-size:1.2em;
background: #fd8;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$('#test').mouseover(function() {
$('#test').animate({fontSize:'1.8em'},200);
});
$('#test').mouseout(function() {
$('#test').animate({fontSize:'1.2em'},200);
});
});
</script>
</head>
<body>
<div id="test" href="http://www.google.com">Test</div>
</body>
</html>