


Implementing fresh style image carousel effects based on javascript_javascript skills
The example in this article shares with you the implementation of image carousel effects using JavaScript for your reference. The specific content is as follows
1. Realizing the effect
As shown above:
1. The pictures are automatically rotated in sequence. Each time a picture is rotated, the corresponding small icon below will have a red border and the corresponding picture name will be displayed
2. When the mouse is placed on the large picture, the picture stops rotating and the current picture is always displayed; after the mouse is moved away, the picture continues to rotate
3. When the mouse is moved over the small icon, the corresponding large image will be displayed in the large picture area; when the mouse is moved away, the rotation will continue from the current picture
2. Code
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>带小图标的JS图片轮换</title> <style type="text/css"> *{ margin: 0px; padding: 0px; } #content{ width: 700px; height: 538px; margin: 0px auto; /*使所有内容居中*/ border: solid #F0F0F0; } /*定义下面小图标处样式*/ #nav1 table{ width: 100%; height: 35px; margin-top: -4px; } #nav1 td{ width: 35px; height: 35px; text-align: center; /*文字居中*/ color: #ffffff; } #text{ } #_text{ width: 100%; height: 100%; background-color: #F0F0F0; border: none; text-align: center; font-size: 18px; color: #000000; font-weight: bold; } </style> </head> <body onload="changeImg()"> <div id="content"> <div id="images"> <img id="_photoes" src="../images/textPhoto/1.jpg" height="500px" width="700px" onmouseover="over1()" onmouseout="out1()"> </div> <div id="nav1"> <table border="0"> <tr> <td id="text" bgcolor="#F0F0F0" colspan="15"><input type="text" id="_text" readonly></td> <td id="img1" class="sImg" bgcolor="#db7093" onmouseover="over2(1)" onmouseout="out2(1)">1</td> <td id="img2" class="sImg" bgcolor="#da70d6" onmouseover="over2(2)" onmouseout="out2(2)">2</td> <td id="img3" class="sImg" bgcolor="#9acd32" onmouseover="over2(3)" onmouseout="out2(3)">3</td> <td id="img4" class="sImg" bgcolor="#adff2f" onmouseover="over2(4)" onmouseout="out2(4)">4</td> <td id="img5" class="sImg" bgcolor="#00bfff" onmouseover="over2(5)" onmouseout="out2(5)">5</td> </tr> </table> </div> </div> <script type="text/javascript"> //将轮换的大图片放入数组中 var arr = new Array(); arr[0] = "../images/textPhoto/1.jpg"; arr[1] = "../images/textPhoto/2.jpg"; arr[2] = "../images/textPhoto/3.jpg"; arr[3] = "../images/textPhoto/4.jpg"; arr[4] = "../images/textPhoto/5.jpg"; //将input区域变换的文字放在数组里 var text = new Array(); text[0] = "焦点图1"; text[1] = "焦点图2"; text[2] = "焦点图3"; text[3] = "焦点图4"; text[4] = "焦点图5"; var smallImg = document.getElementsByClassName("sImg"); //将页面上所有小图片存放在一个数组 var num = 0; function changeImg() { document.getElementById("_photoes").src = arr[num]; document.getElementById("_text").value = text[num]; //当前小图标增加边框样式 for(var i=0;i<arr.length;i++) { if(i==num) smallImg[num].style.border = "red solid"; //大图标对应的小图标增加边框样式 else smallImg[i].style.border = "none"; } if (num == arr.length - 1) num = 0; //如果显示的是最后一张图片,则图片序号变为第一张的序号 else num += 1; //图片序号加一 } var setID = setInterval("changeImg()",1000); //这样写任然会不断调用changeImg()函数 /*当鼠标滑到大图标上时*/ function over1() { clearInterval(setID); //图片停止轮换 // smallImg[n-1].style.border = "red solid"; } /*当鼠标离开大图标时*/ function out1() { setID = setInterval("changeImg()",1000); //图片继续轮换 // smallImg[n-1].style.border = "none"; //大图标对应的小图标边框样式取消 } /*当鼠标滑到小图标上时*/ function over2(n) { document.getElementById("_photoes").src = arr[n-1]; //只要鼠标滑到小图标上,大图区域就显示对应的图片 document.getElementById("_text").value = text[n-1]; clearInterval(setID); //图片停止轮换 //当前小图标增加边框样式 for(var i=0;i<arr.length;i++) { if(i==n-1) smallImg[n-1].style.border = "red solid"; else smallImg[i].style.border = "none"; } } /*当鼠标离开小图标时*/ function out2(n) { if(n!=arr.length) num = n; //从当前图片开始轮换 else num = 0; setID = setInterval("changeImg()",1000); //图片继续轮换 // smallImg[n-1].style.border = "none"; //小图标边框样式取消 } </script> </body> </html>
3. Multiple image rotation debugging notes
js source code:
//实现几张图片的轮换 var num = 0; //显示的图片序号,刚开始时是第一张图片 function changeImg1() { var arr = new Array(); arr[0]="../images/hao123/7.jpg"; arr[1]="../images/hao123/8.jpg"; arr[2]="../images/hao123/9.jpg"; var photo = document.getElementById("topPhoto"); if (num == arr.length - 1) num = 0; //如果显示的是最后一张图片,则图片序号变为第一张的序号 else num += 1; //图片序号加一 photo.src = arr[num]; } setInterval("changeImg1()",5000); //每隔5000毫秒调用一次changImg1()函数
HTML code:
When using it, it is best to define the style of the picture and unify the length and width of the picture, so that the dynamic display effect of the picture will be better.
The above is the entire content of this article. I hope it will be helpful to everyone in learning javascript programming.

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 JS and Baidu Map to implement map pan function Baidu Map is a widely used map service platform, which is often used in web development to display geographical information, positioning and other functions. This article will introduce how to use JS and Baidu Map API to implement the map pan function, and provide specific code examples. 1. Preparation Before using Baidu Map API, you first need to apply for a developer account on Baidu Map Open Platform (http://lbsyun.baidu.com/) and create an application. Creation completed

Essential tools for stock analysis: Learn the steps to draw candle charts in PHP and JS. Specific code examples are required. With the rapid development of the Internet and technology, stock trading has become one of the important ways for many investors. Stock analysis is an important part of investor decision-making, and candle charts are widely used in technical analysis. Learning how to draw candle charts using PHP and JS will provide investors with more intuitive information to help them make better decisions. A candlestick chart is a technical chart that displays stock prices in the form of candlesticks. It shows the stock price

Face detection and recognition technology is already a relatively mature and widely used technology. Currently, the most widely used Internet application language is JS. Implementing face detection and recognition on the Web front-end has advantages and disadvantages compared to back-end face recognition. Advantages include reducing network interaction and real-time recognition, which greatly shortens user waiting time and improves user experience; disadvantages include: being limited by model size, the accuracy is also limited. How to use js to implement face detection on the web? In order to implement face recognition on the Web, you need to be familiar with related programming languages and technologies, such as JavaScript, HTML, CSS, WebRTC, etc. At the same time, you also need to master relevant computer vision and artificial intelligence technologies. It is worth noting that due to the design of the Web side

With the popularity of mobile devices, web design needs to take into account factors such as device resolution and screen size of different terminals to achieve a good user experience. When implementing responsive design of a website, it is often necessary to use the image carousel effect to display the content of multiple images in a limited visual window, and at the same time, it can also enhance the visual effect of the website. This article will introduce how to use CSS to achieve a responsive image automatic carousel effect, and provide code examples and analysis. Implementation ideas The implementation of responsive image carousel can be implemented through CSS flex layout. exist

How to use PHP and JS to create a stock candle chart. A stock candle chart is a common technical analysis graphic in the stock market. It helps investors understand stocks more intuitively by drawing data such as the opening price, closing price, highest price and lowest price of the stock. price fluctuations. This article will teach you how to create stock candle charts using PHP and JS, with specific code examples. 1. Preparation Before starting, we need to prepare the following environment: 1. A server running PHP 2. A browser that supports HTML5 and Canvas 3

With the rapid development of Internet finance, stock investment has become the choice of more and more people. In stock trading, candle charts are a commonly used technical analysis method. It can show the changing trend of stock prices and help investors make more accurate decisions. This article will introduce the development skills of PHP and JS, lead readers to understand how to draw stock candle charts, and provide specific code examples. 1. Understanding Stock Candle Charts Before introducing how to draw stock candle charts, we first need to understand what a candle chart is. Candlestick charts were developed by the Japanese

How to use JS and Baidu Maps to implement map polygon drawing function. In modern web development, map applications have become one of the common functions. Drawing polygons on the map can help us mark specific areas for users to view and analyze. This article will introduce how to use JS and Baidu Map API to implement map polygon drawing function, and provide specific code examples. First, we need to introduce Baidu Map API. You can use the following code to import the JavaScript of Baidu Map API in an HTML file

Overview of how to use JS and Baidu Maps to implement map click event processing: In web development, it is often necessary to use map functions to display geographical location and geographical information. Click event processing on the map is a commonly used and important part of the map function. This article will introduce how to use JS and Baidu Map API to implement the click event processing function of the map, and give specific code examples. Steps: Import the API file of Baidu Map. First, import the file of Baidu Map API in the HTML file. This can be achieved through the following code:
