最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當前位置: 首頁 - 科技 - 知識百科 - 正文

jquery+css實現(xiàn)動感的圖片切換效果_jquery

來源:懂視網(wǎng) 責編:小采 時間:2020-11-27 21:46:08
文檔

jquery+css實現(xiàn)動感的圖片切換效果_jquery

jquery+css實現(xiàn)動感的圖片切換效果_jquery:本文實例講述了jquery+css實現(xiàn)動感的圖片切換效果代碼。分享給大家供大家參考。具體如下: 運行效果截圖如下: 具體代碼如下: 基本思路:定義一個數(shù)組存放需要展示的圖片,接著當單擊圖片時刪除zoomIn類,添加fadeOutRight類,實現(xiàn)實圖右移并消失,記數(shù)器加
推薦度:
導(dǎo)讀jquery+css實現(xiàn)動感的圖片切換效果_jquery:本文實例講述了jquery+css實現(xiàn)動感的圖片切換效果代碼。分享給大家供大家參考。具體如下: 運行效果截圖如下: 具體代碼如下: 基本思路:定義一個數(shù)組存放需要展示的圖片,接著當單擊圖片時刪除zoomIn類,添加fadeOutRight類,實現(xiàn)實圖右移并消失,記數(shù)器加
本文實例講述了jquery+css實現(xiàn)動感的圖片切換效果代碼。分享給大家供大家參考。具體如下:
運行效果截圖如下:

具體代碼如下:

基本思路:定義一個數(shù)組存放需要展示的圖片,接著當單擊圖片時刪除zoomIn類,添加fadeOutRight類,實現(xiàn)實圖右移并消失,記數(shù)器加1(用于調(diào)用下一張圖片),當圖片刪除500毫秒后判斷圖片是不是最后一張,如果是,就把記數(shù)器調(diào)為0,從第一張圖片開始,刪除圖片代碼,接著創(chuàng)建一張新的圖片代碼,并把src設(shè)為下一張圖片,同時加上縮放動畫樣式類animated zoomIn,讓圖片實現(xiàn)動畫顯示,之后把新建的圖片代碼插上p元素之前。

首選引入CSS動畫文件與jquery庫

再加上一些CSS,這里隨意,請根據(jù)自己的項目來調(diào)整

 .container {
 width: 100vw;
 height: 100vh;
 background-color: #fff;
 position: absolute;
 }
 
 .center {
 width: 600px;
 margin-left: auto;
 margin-right: auto;
 position: relative;
 top: 50%;
 transform: translateY(-50%);
 text-align: center;
 
 background-image: url(images/banana.png);
 background-position: -10000px,-10000px;
 background-repeat: no-repeat;
 }
 
 .center h1 {
 margin: 0px;
 padding: 0px;
 text-align: center;
 margin-bottom: 50px;
 font-size: 18px;
 text-transform: uppercase;
 }
 
 .center p{
 padding-top:50px;
 text-align: center;
 color: #ccc;
 font-size: 12px;
 
 }
 
 .center p a{
 text-decoration: none;
 color: inherit;
 }
 
 .center p a:hover{
 color:#222;
 }
 
 .center img{
 cursor: pointer;
 }

基本的CSS定位整個頁面,動畫不受以上的CSS影響。
寫入JS實現(xiàn)動畫效要

源碼下載:jquery+css實現(xiàn)動感的圖片切換效果源碼

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

jquery+css實現(xiàn)動感的圖片切換效果_jquery

jquery+css實現(xiàn)動感的圖片切換效果_jquery:本文實例講述了jquery+css實現(xiàn)動感的圖片切換效果代碼。分享給大家供大家參考。具體如下: 運行效果截圖如下: 具體代碼如下: 基本思路:定義一個數(shù)組存放需要展示的圖片,接著當單擊圖片時刪除zoomIn類,添加fadeOutRight類,實現(xiàn)實圖右移并消失,記數(shù)器加
推薦度:
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top