onloadtrans.aspx font size:
<html>
<head>
<title>Abakada HTML Demo: Basic Transitions Demo</title>
<link rel="stylesheet" href="/shared/netdemos.css">

<script language="JavaScript">
<!--
function transLogo ( ) {
logo.filters [ 0 ].Apply ( );
logo.style.visibility="visible";
logo.filters [ 0 ].Play ( );
transText ( );}

function transText ( ) {
text.filters [ 0 ].Apply ( );
text.style.visibility="visible";
text.filters [ 0 ].Play ( );}

function initTrans ( ) {
logo.style.visibility="hidden";
text.style.visibility="hidden";
transLogo ( );}
//-->
</script>
</head>

<body onload="transLogo ( )">
<!-- #include virtual="~/shared/top.inc" -->

<div class="header"><h2>Abakada HTML Demo: Basic Transitions Demo</h2></div>
<hr size=1 width=92%>

<div align="center">
<img border=0 height=56 id=logo src="../shared/images/logo.gif" style="filter: revealTrans ( transition=14,duration=3 ); visibility: hidden" width=256>
<br><br>
<div id=text style="width: 80%; text-align: center; filter: blendTrans ( duration=3 ); visibility: hidden">
<h5>This demo shows how transitions can be used to add visual effects as a page loads. The Logo uses a Split Horizontal Out effect, one of 23 predefined <b>Reveal Transition</b> filters supported in Internet Explorer, while this Text portion uses the <b>Blend Transition</b> filter.</h5></div>
</div>

<hr size=1 width=92%>
<p class="small"><a href="javascript: initTrans ( );">Replay</a></p>

<!-- #include virtual="~/shared/viewsrc.inc" -->

</body>
</html>