


Using JavaScript to achieve news scrolling effect (example code)_javascript skills
I recently wanted to implement a rolling news effect. I checked some information on the Internet and found that there are two basic implementation methods:
1. Use Marquee tags. I have reprinted a relatively detailed article on the use of this tag. The advantage of this tag is that it is easy to use. The disadvantage is that people have gradually stopped using it. Many browsers do not support it, even in IE8, XHTML4.0's loose.dtd is OK, but removing loose.dtd is not.
2. Use div javascript method. The advantage of this method is that it is compatible with almost all browsers and can still run stably within a foreseeable time. And using div allows web pages to use existing css resources to achieve many dazzling effects. The disadvantage is that it requires certain programming experience and patience.
The basic principle of using javascript div is the same. Use the scrollTop attribute and offsettheight attribute to achieve the moving effect. Generally, two divs are used, the content inside is the same, and then the two divs are spliced to form a continuous loop effect. Below are two sample codes I found. The first one is exactly what I used and it works. I didn't test the second one. I am writing this for comparison. The second copy should be usable because I took it from the website.
First code
<%
ArrayList announceList = DBTools.getView("select * from sys_announce order by pubdate DESC");
for (int i = 1; i < announceList.size() && i < 5; i++) {
String announceArr[] = (String[]) announceList.get(i);
String content = announceArr[1];
String date = announceArr[2].substring(announceArr[2].indexOf("-")+1, announceArr[2].indexOf(" "));
%>
![]() | <%=content%> <%=date%> |
<%
}
%>
iFrame = 1; // Define the pixels moved in each frame.
var iFrequency = 50; // Define the frame frequency.
var timer; // Define the time handle. layer2").offsetHeight >= layerHeight)
document.getElementById("layer1").style.height = layerHeight; . getElementById ("layer2").offsetHeight; innerHTML);
function move(){
if(document.getElementById("layer1").scrollTop >= document.getElementById("layer2").offsetHeight){
document .getElementById("layer1 ").scrollTop -= (document.getElementById("layer2").offsetHeight - iFrame);
rollTop = iFrame;
}
timer = setInterval("move()",iFrequency); document.getElementById ("layer1").onmouseout=function() {timer=setInterval("move()",iFrequency);}
// -->
Second code
Copy code
The code is as follows:
<SCRIPT><br> var timer;<br><br> document.write('<div id="icefable1" style="width:136;">'<br> +'<table width=130; border=0 cellspacing=0 cellpadding=0>'<br> +'<tr><td width=130; height=120 style="padding-top:2px" mce_style="padding-top:2px" valign=top>'+strArray[1]+'</td></tr>'<br> +'<tr><td width=130; height=120 style="padding-top:2px" mce_style="padding-top:2px" valign=top>'+strArray[0]+'</td></tr>'<br> +'</table>'<br> +'</div>'<br> +'<div id="icefable2" style="position:absolute;visibility:hidden" mce_style="position:absolute;visibility:hidden"></div>');<br> /*<br> var marqueesHeight=132;<br> var stopscroll=false;<br> icefable1.scrollTop=0;<br> */<br> with(icefable1){<br> /*<br> style.width=0;<br> style.height=marqueesHeight;<br> style.overflowX="visible";<br> style.overflowY="hidden";<br> noWrap=true;<br> */<br> onmouseover=function(){clearInterval(timer);};<br> onmouseout=function(){timer = setInterval("move()",100);};<br> }<br> /*<br> var preTop=0;<br> var currentTop=0;<br> var stoptime=0;<br> */<br> function init_srolltext(){<br> icefable2.innerHTML="";<br> icefable2.innerHTML =icefable1.innerHTML;<br> icefable1.innerHTML=icefable2.innerHTML icefable2.innerHTML;<br> timer = setInterval("move()",100);<br> }<br> function move(){<br> if(document.getElementById("icefable2").scrollTop >= document.getElementById("icefable1").offsetHeight)<br> document.getElementById("icefable2").scrollTop -= (document.getElementById("icefable1").offsetHeight - 1);<br> else<br> ocument.getElementById("icefable2").scrollTop = 1;<br> }<br> init_srolltext();<br><br> function scrollUp(){<br> if(stopscroll==true) return;<br> currentTop =4;<br> if(currentTop==132)<br> {<br> stoptime =4;<br> currentTop-=0;<br> }<br> else {<br> preTop=icefable1.scrollTop;<br> icefable1.scrollTop =4;<br> if(preTop==icefable1.scrollTop){<br> icefable1.scrollTop=icefable2.offsetHeight-marqueesHeight;<br> icefable1.scrollTop =4;<br> }<br> }<br> }<br> //setTimeout("init_srolltext()",2000);<br> //init_srolltext();<br> </SCRIPT>

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

How to monitor the scrolling of an iframe requires specific code examples. When we use the iframe tag to embed other web pages in a web page, sometimes we need to perform some specific operations on the content in the iframe. One of the common needs is to listen for the scroll event of the iframe so that the corresponding code can be executed when the scroll occurs. The following will introduce how to use JavaScript to monitor the scrolling of an iframe, and provide specific code examples for reference. Get the iframe element First, we need

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

Introduction to the method of obtaining HTTP status code in JavaScript: In front-end development, we often need to deal with the interaction with the back-end interface, and HTTP status code is a very important part of it. Understanding and obtaining HTTP status codes helps us better handle the data returned by the interface. This article will introduce how to use JavaScript to obtain HTTP status codes and provide specific code examples. 1. What is HTTP status code? HTTP status code means that when the browser initiates a request to the server, the service
