이 기사의 예에서는 jQuery가 기업 웹사이트 배너의 초점 이미지 전환 기능을 구현하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>jQuery淡出淡入带缩略图幻灯片</title> <script type="text/javascript" src="jquery-1.6.2.min.js"></script> <style> .flashBanner{width:782px;height:326px; overflow:hidden;margin:0 auto; } .flashBanner{position:relative;} .flashBanner .mask{height:32px;line-height:32px; background-color:#000;width:100%; text-align:right;position:absolute;left:0; bottom:-32px;filter:alpha(opacity=70); -moz-opacity:0.7;opacity:0.7;overflow:hidden; } .flashBanner .mask img{ vertical-align:middle; margin-right:10px; cursor:pointer; } .flashBanner .mask img.show{margin-bottom:3px;} </style> <script type="text/javascript"> $(function(){ $(".flashBanner").each(function(){ var timer; $(".flashBanner .mask img").click(function(){ var index = $(".flashBanner .mask img").index($(this)); changeImg(index); }).eq(0).click(); $(this).find(".mask").animate({ "bottom":"0" },700); $(".flashBanner").hover(function(){ clearInterval(timer); },function(){ timer = setInterval(function(){ var show = $(".flashBanner .mask img.show").index(); if (show >= $(".flashBanner .mask img").length-1) show = 0; else show ++; changeImg(show); },3000); }); function changeImg (index) { $(".flashBanner .mask img").removeClass("show").eq(index).addClass("show"); $(".flashBanner .bigImg").parents("a").attr("href",$(".flashBanner .mask img").eq(index).attr("link")); $(".flashBanner .bigImg").hide().attr("src",$(".flashBanner .mask img").eq(index).attr("uri")).fadeIn("slow"); } timer = setInterval(function(){ var show = $(".flashBanner .mask img.show").index(); if (show >= $(".flashBanner .mask img").length-1) show = 0; else show ++; changeImg(show); },3000); }); }); </script> </head> <body> <div class="flashBanner"> <a href="/"><img class="bigImg lazy" src="/static/imghwm/default1.png" data-src="11.jpg" style="max-width:90%" style="max-width:90%" / alt="기업 홈페이지 배너 포커스 이미지 전환 기능을 구현한 jQuery의 예_jquery" ></a> <div> <img class="bigImg lazy" src="/static/imghwm/default1.png" data-src="11.jpg" uri="11.jpg" link="/" style="max-width:90%" style="max-width:90%"/ alt="기업 홈페이지 배너 포커스 이미지 전환 기능을 구현한 jQuery의 예_jquery" > <img src="/static/imghwm/default1.png" data-src="22.jpg" class="lazy" uri="22.jpg" link="/" style="max-width:90%" style="max-width:90%"/ alt="기업 홈페이지 배너 포커스 이미지 전환 기능을 구현한 jQuery의 예_jquery" > <img src="/static/imghwm/default1.png" data-src="33.jpg" class="lazy" uri="33.jpg" link="/" style="max-width:90%" style="max-width:90%"/ alt="기업 홈페이지 배너 포커스 이미지 전환 기능을 구현한 jQuery의 예_jquery" > <img src="/static/imghwm/default1.png" data-src="44.jpg" class="lazy" uri="44.jpg" link="/" style="max-width:90%" style="max-width:90%"/ alt="기업 홈페이지 배너 포커스 이미지 전환 기능을 구현한 jQuery의 예_jquery" > <img src="/static/imghwm/default1.png" data-src="55.jpg" class="lazy" uri="55.jpg" link="/" style="max-width:90%" style="max-width:90%"/ alt="기업 홈페이지 배너 포커스 이미지 전환 기능을 구현한 jQuery의 예_jquery" > </div> </div> <div style="text-align:center;margin:50px 0; font:normal 14px/24px 'MicroSoft YaHei';"> </div> </body> </html>
이 기사가 모든 사람의 jQuery 프로그래밍에 도움이 되기를 바랍니다.

实现方法:1、用“$("img").delay(毫秒数).fadeOut()”语句,delay()设置延迟秒数;2、用“setTimeout(function(){ $("img").hide(); },毫秒值);”语句,通过定时器来延迟。

区别:1、axios是一个异步请求框架,用于封装底层的XMLHttpRequest,而jquery是一个JavaScript库,只是顺便封装了dom操作;2、axios是基于承诺对象的,可以用承诺对象中的方法,而jquery不基于承诺对象。

修改方法:1、用css()设置新样式,语法“$(元素).css("min-height","新值")”;2、用attr(),通过设置style属性来添加新样式,语法“$(元素).attr("style","min-height:新值")”。

增加元素的方法:1、用append(),语法“$("body").append(新元素)”,可向body内部的末尾处增加元素;2、用prepend(),语法“$("body").prepend(新元素)”,可向body内部的开始处增加元素。

删除方法:1、用empty(),语法“$("div").empty();”,可删除所有子节点和内容;2、用children()和remove(),语法“$("div").children().remove();”,只删除子元素,不删除内容。

在jquery中,apply()方法用于改变this指向,使用另一个对象替换当前对象,是应用某一对象的一个方法,语法为“apply(thisobj,[argarray])”;参数argarray表示的是以数组的形式进行传递。

on()方法有4个参数:1、第一个参数不可省略,规定要从被选元素添加的一个或多个事件或命名空间;2、第二个参数可省略,规定元素的事件处理程序;3、第三个参数可省略,规定传递到函数的额外数据;4、第四个参数可省略,规定当事件发生时运行的函数。

去掉方法:1、用“$(selector).removeAttr("readonly")”语句删除readonly属性;2、用“$(selector).attr("readonly",false)”将readonly属性的值设置为false。


핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

WebStorm Mac 버전
유용한 JavaScript 개발 도구

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

DVWA
DVWA(Damn Vulnerable Web App)는 매우 취약한 PHP/MySQL 웹 애플리케이션입니다. 주요 목표는 보안 전문가가 법적 환경에서 자신의 기술과 도구를 테스트하고, 웹 개발자가 웹 응용 프로그램 보안 프로세스를 더 잘 이해할 수 있도록 돕고, 교사/학생이 교실 환경 웹 응용 프로그램에서 가르치고 배울 수 있도록 돕는 것입니다. 보안. DVWA의 목표는 다양한 난이도의 간단하고 간단한 인터페이스를 통해 가장 일반적인 웹 취약점 중 일부를 연습하는 것입니다. 이 소프트웨어는

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경
