<html>
<head>
<title>Abakada CSS Demo: top Property with Transition</title>
<link rel="stylesheet" href="/shared/netdemos.css">
<style>
#img { transition: top 2s }
</style>
</head>
<body>
<div class="header"><h2>Abakada CSS Demo: <b>top</b> Property with <b>Transition</b></h2></div>
<hr size=1 width=92%>
<div align="center">
<p id="msg">This example uses <i>inline event handlers</i> to dynamically change an object's CSS <b>top</b> property<br>
in response to mouse events.
Click to move the top edge position. Double-click to reset.</p>
<img id="img" src="../shared/images/samp06.jpg"
style="position: relative; top: 0px"
onclick="this.style.top='-200px'"
ondblclick="this.style.top='0px'">
</div>
<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->
</body>
</html>