The effect diagram is as follows:
Animation effect introduction: The effect of this set of advertisements is that the pictures will automatically play after opening the page, a total of 5 pictures from 1-5, if it belongs to the standard Go to the 1, 2, 3, 4, and 5 lists in the lower right corner and you can freely switch to the pictures you want to see. Picture switching is from bottom to top.
Production idea: first put these 5 pictures into the 5 li lists of ul,
《1》find the total number of pictures. And if we are in When you click 1.2.3.4.5, its corresponding number is passed and the corresponding picture is displayed.
《2》If the attribute mark is placed, stop the animation (you can use clearIntval()). If the attribute mark is moved, we can use setIntval(function, time) to execute this function every 3000 milliseconds.
《3》Complete this animation function. In this function, first we can get the height of this animation area (.slider). Then use animate custom animation function to achieve changes in the TOP position. And add a highlighting effect to the numbers in the current li.
《4》One more thing is to make the TOP changes here normally, be sure to set "position:relative;" in the parent tag (.ad) of the current area, and everything will be OK. The production code is as follows:
1》The html structure is as follows:
- 1
- 2
- 3
- 4
- 5
2》The jquery code is as follows:
//Hyperlink text prompt
$(function(){
var len = $ (".num >li").length;
var index = 0;
var adTimer;
$(".num li").mouseover(function(){
index = $(".num li").index(this); //" this " here can be replaced with " $(this) "
showImg(index);
}).eq(0) .mouseover(); //Used for initialization, when the page is opened, the first picture is placed as the attribute to trigger the animation.
//Use
clearInterval(adTimer);
},function() {
adTimer = setInterval(function(){
showImg(index);
index ;
if( index == len ){ index=0; }
} , 3000);
}).trigger("mouseleave");
})
//Display different images through the given index
function showImg(index){
var adHeight = $(".content_right .ad").height();
$(".slider").stop(true,false).animate( {"top": -adHeight*index},1000 ) ;
$(".num li").removeClass("on")
.eq(index).addClass("on");
}
3》Corresponding CSS style:
.content_right{
배경:#eee;
테두리: 1px 단색 #AAAAAA;
너비: 586px;
플로트:왼쪽;
}
.content_right .ad {
margin-bottom:10px;
폭:586px;
높이:150px;
오버플로:숨김;
위치:상대적;
}
.content_right .slider,
.content_right .num {
위치:절대;
}
.content_right .slider li{
list-style:none;
디스플레이:인라인;
}
.content_right .slider img{
너비:586px;
높이:150px;
디스플레이:블록;
}
.content_right .num{
right:5px;
하단:5px;
}
.content_right .num li{
float: 왼쪽;
너비: 16px;
높이: 16px;
줄 높이: 16px;
텍스트 정렬: 가운데;
글꼴군: Arial;
글꼴 크기: 12px;
색상: #FF7300;
배경색: #fff;
테두리: 1px 실선 #FF7300;
오버플로: 숨김;
여백: 3px 1px;
커서: 포인터;
}
.content_right .num li.on{
너비: 21px;
높이: 21px;
줄 높이: 21px;
색상: #fff;
배경색: #FF7300;
글꼴 크기: 16px;
여백: 0 1px;
테두리: 0;
글꼴 두께: 굵게;
}

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the


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 Linux new version
SublimeText3 Linux latest version

WebStorm Mac version
Useful JavaScript development tools

Dreamweaver CS6
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version
Chinese version, very easy to use
