本文實(shí)例講述了jQuery實(shí)現(xiàn)動(dòng)畫、消失、顯現(xiàn)、漸出、漸入效果。分享給大家供大家參考,具體如下:
肅州網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)公司,肅州網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為肅州千余家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站建設(shè)要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的肅州做網(wǎng)站的公司定做!
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <title></title> <script> $(function(){ $(but1).on("click",function(){ $("img").hide(500) ; //消失 }) ; $(but2).on("click",function(){ $("img").show(5000) ; //顯現(xiàn) }) ; $(but3).on("click",function(){ $("img").slideUp(5000) ; //滑動(dòng)消失 }) ; $(but4).on("click",function(){ $("img").slideDown(5000) ; //滑動(dòng)顯現(xiàn) }) ; $(but5).on("click",function(){ $("img").slideToggle(5000) ; //滑動(dòng)切換(消失后顯現(xiàn),顯現(xiàn)后消失) }) ; $(but6).on("click",function(){ $("img").fadeOut(5000) ; //淡出 }) ; $(but7).on("click",function(){ $("img").fadeIn(5000) ; //淡入 }) ; $(but8).on("click",function(){ $("img").fadeTo(500,0.5) ; //淡化 }) ; $(but9).on("click",function(){ $("div").animate({left:"800px"},5000) ; //移動(dòng)(需要調(diào)整對(duì)象的style屬性中position的值absolute) }) ; }) ; </script> </head> <body> <input type="button" id="but1" value="消失"/> <input type="button" id="but2" value="顯現(xiàn)"/> <input type="button" id="but3" value="滑動(dòng)消失"/> <input type="button" id="but4" value="滑動(dòng)顯現(xiàn)"/> <input type="button" id="but5" value="滑動(dòng)切換"/> <input type="button" id="but6" value="淡出"/> <input type="button" id="but7" value="淡入"/> <input type="button" id="but8" value="淡化"/> <input type="button" id="but9" value="移動(dòng)"/> <div ><img src="http://demo.jb51.net/js/2018/html5-css3-3d-img-flash-codes/images/sJALsDXak4EehSg2F2y92rt5hPe.jpg" height="200"></div> </body> </html>
運(yùn)行效果(這里使用了本站演示圖片加以測(cè)試):
這里的方法都可以再嵌套方法。
對(duì)象.方法名(延遲時(shí)間,function(){新的方法});
比如,消失后顯現(xiàn)
$(but1).on("click",function(){ $("img").hide(500,function(){ $("img").show(5000) ; }) ; }) ;
比如,移動(dòng)后再移回
$(but9).on("click",function(){ $("div").animate({left:"800px"},5000,function(){ $("div").animate({left:"0px"},5000) ; }) ; }) ;
感興趣的朋友可以使用在線HTML/CSS/JavaScript代碼運(yùn)行工具http://tools.jb51.net/code/HtmlJsRun測(cè)試上述代碼運(yùn)行效果。
更多關(guān)于jQuery相關(guān)內(nèi)容還可查看本站專題:《jQuery動(dòng)畫與特效用法總結(jié)》、《jQuery切換特效與技巧總結(jié)》、《jQuery擴(kuò)展技巧總結(jié)》、《jQuery常用插件及用法總結(jié)》、《jQuery拖拽特效與技巧總結(jié)》、《jQuery表格(table)操作技巧匯總》、《jQuery常見(jiàn)經(jīng)典特效匯總》及《jquery選擇器用法總結(jié)》
希望本文所述對(duì)大家jQuery程序設(shè)計(jì)有所幫助。
新聞標(biāo)題:jQuery實(shí)現(xiàn)動(dòng)畫、消失、顯現(xiàn)、漸出、漸入效果示例
文章路徑:http://www.rwnh.cn/article42/gcgihc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供電子商務(wù)、搜索引擎優(yōu)化、標(biāo)簽優(yōu)化、服務(wù)器托管、品牌網(wǎng)站制作、建站公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)