温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

JS带关闭按钮的网页漂浮广告代码

发布时间:2020-06-12 20:05:42 来源:网络 阅读:958 作者:菜鸟不菜么 栏目:开发技术
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>带关闭按钮的网页漂浮广告代码</title> </head> <body> <div id="img"  onmouseover="clearInterval(interval)" onmouseout="interval = setInterval('changePos()', delay)" align="right"> <img border="0" src="https://static3.51cto.com/home/web/p_w_picpaths/Flogo.png" onload="return imgzoom(this,600);" onclick="javascript:window.open(this.src);" /> <span  onclick="clearInterval(interval);img.style.visibility = 'hidden'">X</span> </div> <script language=javascript> var xPos = 20;//from alixixi.com var yPos = document.body.clientHeight; var step = 1; var delay = 30;                      var height = 0;                      var Hoffset = 0;                     var Woffset = 0;                      var yon = 0;                     var xon = 0;                      var pause = true;                     var interval;                     img.style.top = yPos;                     function changePos() {                    width = document.body.clientWidth;                     height = document.body.clientHeight;                     Hoffset = img.offsetHeight;                     Woffset = img.offsetWidth;                    img.style.left = xPos + document.body.scrollLeft;                     img.style.top = yPos + document.body.scrollTop;                     if (yon) {                   yPos = yPos + step;                     }                else {              yPos = yPos - step;                     }             if (yPos < 0) {                   yon = 1;                     yPos = 0;                     }                   if (yPos >= (height - Hoffset)) {                     yon = 0;                     yPos = (height - Hoffset);                      }                   if (xon) {                     xPos = xPos + step;                     }                  else {                  xPos = xPos - step;                    }                   if (xPos < 0) {                     xon = 1;                    xPos = 0;                    }          if (xPos >= (width - Woffset)) {                     xon = 0;            xPos = (width - Woffset);                     }                     } function start() {                     img.style.visibility = "visible";                   interval = setInterval('changePos()', delay);                     }               start();   </script> </body> </html>
向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI