Kopieren Sie den Codecode wie folgt:
<!DOCTYPE HTML>
<html>
<Kopf>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>JS-Vollbild-Floating-Werbung</title>
<style type="text/css">
div#roll{width:100px;height:100px; background-color:#000; color:#fff;}
</style>
</head>
<Körper>
<div>
<div><h2>JS-Vollbild-Floating-Werbung, bewegen Sie den Cursor, um die Bewegung zu stoppen・Ke Leyi</h2></div>
</div>
<div id="roll">Ich mache Werbung<br />www.jb51.com</div>
<script type="text/javascript">
var ggRoll = {
roll: document.getElementById("roll"),
Geschwindigkeit: 20,
statusX: 1,
StatusY: 1,
x: 100,
Jahr: 300,
winW: document.documentElement.clientWidth - document.getElementById("roll").offsetWidth,
winH: document.documentElement.clientHeight - document.getElementById("roll").offsetHeight,
Gehen Sie: Funktion () {
this.roll.style.left = this.x + 'px';
this.roll.style.top = this.y + 'px';
this.x = this.x + (this.statusX ? -1 : 1)
if (this.x < 0) { this.statusX = 0 }
if (this.x > this.winW) { this.statusX = 1 }
this.y = this.y + (this.statusY ? -1 : 1)
if (this.y < 0) { this.statusY = 0 }
if (this.y > this.winH) { this.statusY = 1 }
}
}
var Interval = setInterval("ggRoll.Go()", ggRoll.speed);
ggRoll.roll.onmouseover = function () { clearInterval(interval) };
ggRoll.roll.onmouseout = function () { Interval = setInterval("ggRoll.Go()", ggRoll.speed) };
</script>
</body>
</html>