|
<html>
<head>
<title>OnScroll Example</title>
<script type="text/javascript">
window.onload = function () {
var oWatermark = document.getElementById("divWatermark");
oWatermark.style.top = document.body.scrollTop;
}
</script>
</head>
<body>
<div id="divWatermark" style="position: absolute; top: 0px; right: 0px; color: #cccccc; width: 150px; height: 30px; background-color: navy">www.java2s.com</div>
</body>
</html>
|