Side navigation
Ticket #2086: fontsizedemo.html
File fontsizedemo.html, 1.1 KB (added by eveningsky, June 08, 2009 05:29PM UTC)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript" src="assets/js/jquery/jquery-1.3.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#myListItem').bind('mouseover', function(){ $('#myLink').animate({'fontSize': '2em'}
, {queue: false, duration: 800});})
.bind('mouseout', function(){ $('#myLink').animate({'fontSize': '1em'},
{queue: false, duration: 800});});
});
</script>
<style type="text/css">
html{font-size: 15px;}
li{
list-style: none;
position: absolute;
top: 100px; left: 100px;
width: 250px;
}
a{
font-size: 1em;
position: relative;
background: #ccc;
margin: 0 auto;
padding: 5px;
}
</style>
</head>
<body>
<ul><li id="myListItem">
<a id="myLink" href="index.html">Go somewhere</a>
</li></ul>
</body>
</html>
Download in other formats:
Original Format
File fontsizedemo.html, 1.1 KB (added by eveningsky, June 08, 2009 05:29PM UTC)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript" src="assets/js/jquery/jquery-1.3.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#myListItem').bind('mouseover', function(){ $('#myLink').animate({'fontSize': '2em'}
, {queue: false, duration: 800});})
.bind('mouseout', function(){ $('#myLink').animate({'fontSize': '1em'},
{queue: false, duration: 800});});
});
</script>
<style type="text/css">
html{font-size: 15px;}
li{
list-style: none;
position: absolute;
top: 100px; left: 100px;
width: 250px;
}
a{
font-size: 1em;
position: relative;
background: #ccc;
margin: 0 auto;
padding: 5px;
}
</style>
</head>
<body>
<ul><li id="myListItem">
<a id="myLink" href="index.html">Go somewhere</a>
</li></ul>
</body>
</html>