The example in this article describes the JavaScript code for implementing a floating window effect. Share it with everyone for your reference. The details are as follows:
Here we introduce the use of JavaScript to realize a floating window that floats in the vertical direction. The JS function in the code has rich floating layer definition functions, such as floating layer position and height, initialization event trigger, and setting the floating layer to be visible. , use style.left to set the left margin of the floating layer, the movement speed of the floating layer, etc., and more setting options can be achieved.
The screenshot of the running effect is as follows:
The online demo address is as follows:
http://demo.jb51.net/js/2015/js-up-down-float-move-win-codes/
The specific code is as follows:
<HTML> <HEAD> <TITLE>上下浮动的窗口</TITLE> <style type="text/css"> <!-- a:hover{color:00ff00} a {color:000000;text-decoration:none} --> </style> </HEAD> <BODY> <div id="floatpoint" STYLE="position:absolute;visibility:visible;"> <!--两个DIV之间放上你需要显示的内容--> <table border=1 cellspacing="0" cellpadding="0" bordercolorlight="#000000" bordercolor="#FFFFFF"> <tr> <td align=center bgcolor=#E3E3E3 style="color:HIGHLIGHTTEXT"> <font color="#000000"> 最新消息!</font> </td> </tr> <tr> <td bgcolor=WINDOW style="font-size:9pt;color:WINDOWTEXT"> <a href="#" target="_blank">脚本之家</a><br> <div></div> </td> </tr> </table> <!--两个DIV之间放上你需要显示的内容--> </div> <script LANGUAGE="JavaScript1.2"> //这部分为用户自定义区 var XX=10; // 浮动层的X坐标,即左边距 var xstep=1; // 移动步长,此参数越小,移动越平滑,最小值为1 var delay_time=60; // 每步的时间间隔,此参数越小,移动速度越快 //以下部分请勿随意改动 var YY=0; var ch=0; var oh=0; var yon=0; var ns4=document.layers?1:0 //判断浏览器类型是否是NS4 var ie=document.all?1:0 //判断浏览器类型是否是IE var ns6=document.getElementById&&!document.all?1:0 //判断浏览器类型是否是NS6 if(ie){ //如果是IE YY=document.body.clientHeight; //由clientHeight取得页面的高度 floatpoint.style.top=YY; //将浮动层位置调整到页面底部 } else if (ns4){ //如果是NS4 YY=window.innerHeight; //由innerHeight取得页面的高度 document.floatpoint.pageY=YY; //将浮动层位置调整到页面底部 document.floatpoint.visibility="hidden"; //将浮动层隐藏。 } else if (ns6){ //如果是NS6 YY=window.innerHeight //由innerHeight取得页面的高度 document.getElementById('floatpoint').style.top=YY //将浮动层位置调整到页面底部 } function reloc1(){ if(yon==0){YY=YY-xstep;} //如果当前应该上移,则减小YY值 else{YY=YY+xstep;} //否则增加YY值下移 if (ie){ //如果是IE ch=document.body.clientHeight; //取页面高度 oh=floatpoint.offsetHeight; //取浮动层的高度 } else if (ns4){ //如果是NS4 ch=window.innerHeight; //取页面高度 oh=document.floatpoint.clip.height; //取浮动层的高度 } else if (ns6){ //如果是NS6 ch=window.innerHeight //取页面高度 oh=document.getElementById("floatpoint").offsetHeight //取浮动层的高度 } if(YY<0){yon=1;YY=0;} //如果浮动层超出了上界,则设定移动方向为向下;并设定层的位置为正好在上界处 if(YY>=(ch-oh)){yon=0;YY=(ch-oh);} //如果浮动层超出了下界,则设定移动方向为向上;并设定层的位置为正好在下界处 if(ie){ //如果是IE floatpoint.style.left=XX; //用style.left设定浮动层左边距 floatpoint.style.top=YY+document.body.scrollTop; //用style.top设定浮动层上边距 } else if (ns4){ //如果是NS4 document.floatpoint.pageX=XX; //用.pageX设定浮动层左边距 document.floatpoint.pageY=YY+window.pageYOffset; //用.pageY设定浮动层上边距 } else if (ns6){ //如果是NS6 document.getElementById("floatpoint").style.left=XX document.getElementById("floatpoint").style.top=YY+window.pageYOffset } } function onad(){ if(ns4) //如果是NS4 document.floatpoint.visibility="visible"; //设定浮动层为可见 loopfunc(); //开始主循环,以不断改变浮动层位置 } function loopfunc(){ reloc1(); //调整浮动层位置 setTimeout('loopfunc()',delay_time); //设定下一次调整的延时 } if (ie||ns4||ns6) window.onload=onad //初始化事件触发器 </script> </BODY> </HTML>
I hope this article will be helpful to everyone’s JavaScript programming.

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1
Powerful PHP integrated development environment

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
