jquery實(shí)現(xiàn)的可多圖且不限圖片數(shù)量的焦點(diǎn)圖自動(dòng)輪播特效源碼
1.08MB / 12-05
jquery實(shí)現(xiàn)的鼠標(biāo)懸停圖片自動(dòng)輪播效果速度非常快效果非常逼真
48KB / 09-29
jQuery實(shí)現(xiàn)的百度相框圖片列表切換展示特效源碼
1.2MB / 07-04
jQuery實(shí)現(xiàn)的圖片墻全屏淡入淡出切換展示效果
274KB / 08-05
jQuery實(shí)現(xiàn)兩張圖片漸入漸出無(wú)縫切換展示效果
46KB / 05-03
基于jQuery的文字+圖片滑動(dòng)切換展示特效
300KB / 03-21
基于jQuery實(shí)現(xiàn)圖片自動(dòng)輪播切換展示特效源碼
591KB / 12-23
-
純css實(shí)現(xiàn)的3D立體雞蛋動(dòng)畫視覺(jué)效果源碼【帶光照與陰影】 CSS特效 / 9KB
-
CSS3炫彩文字動(dòng)畫背景特效源碼 CSS特效 / 402KB
-
超炫酷CSS3登錄界面動(dòng)態(tài)特效源碼 CSS特效 / 253KB
-
-
-
CCS3制作的橙色帶陰影漸變背景傾斜文字特效源碼 CSS特效 / 22KB
-
CSS制作的發(fā)光霓虹效果文字特效源碼 CSS特效 / 115KB
-
-
CSS3實(shí)現(xiàn)鼠標(biāo)懸停名片動(dòng)態(tài)圖文切換特效 CSS特效 / 28.9KB
-
詳情介紹
HTML框架:
[code]
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Impressive CSS3 Product Showcase | Tutorialzine Demo</title>
<!-- Google Webfonts and our stylesheet -->
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=PT+Sans+Narrow|Open+Sans:300" />
<link rel="stylesheet" href="assets/css/styles.css" />
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="impress" class="impress-not-supported">
<!-- 幻燈片的代碼就放在這里 -->
</div>
<a id="arrowLeft" class="arrow"><</a>
<a id="arrowRight" class="arrow">></a>
<!-- JavaScript includes -->
<script src="//code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="assets/js/impress.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>
[/code]
幻燈片的html代碼:
[code]
<!-- The first slide retains its default position. We could omit the data attributes -->
<div id="intro" class="step" data-x="0" data-y="0">
<h2>Introducing Galaxy Nexus</h2>
<p>Android 4.0<br /> Super Amoled 720p Screen<br />
<img src="assets/img/nexus_1.jpg" width="232" height="458" alt="Galaxy Nexus" />
</div>
<!-- We are offsetting the second slide, rotating it and making it 1.8 times larger -->
<div id="simplicity" class="step" data-x="1100" data-y="1200" data-scale="1.8" data-rotate="190">
<h2>Simplicity in Android 4.0</h2>
<p>Android 4.0, Ice Cream Sandwich brings an entirely new look and feel..</p>
<img src="assets/img/nexus_2.jpg" width="289" height="535" alt="Galaxy Nexus" />
</div>
<!-- Same for the rest.. -->
<div id="connect" class="step" data-x="-300" data-y="600" data-scale="0.2" data-rotate="270">
<h2>Connect & Share</h2>
<p>Real-life sharing is nuanced and rich. Galaxy Nexus makes sharing.. </p>
<img src="assets/img/nexus_3.jpg" width="558" height="329" alt="Galaxy Nexus" />
</div>
<div id="upload" class="step" data-x="-200" data-y="1500" data-rotate="180">
<h2>Instant Upload</h2>
<p>Your photos upload themselves with Instant Upload, which makes ..</p>
<img src="assets/img/nexus_4.jpg" width="248" height="510" alt="Galaxy Nexus" />
</div>
<div id="music" class="step" data-x="-1200" data-y="1000" data-scale="0.8" data-rotate="270">
<h2>Jam on with Google Music</h2>
<p>Google Music makes discovery, purchase, and listening effortless and..</p>
<img src="assets/img/nexus_5.jpg" width="570" height="389" alt="Galaxy Nexus" />
</div>
[/code]
用到的CSS樣式:
[code]
/*----------------------------
Styling the presentation
-----------------------------*/
#impress:not(.impress-not-supported) .step{
opacity:0.4;
}
#impress .step{
width:700px;
height: 600px;
position:relative;
margin:0 auto;
-moz-transition:1s opacity;
-webkit-transition:1s opacity;
transition:1s opacity;
}
#impress .step.active{
opacity:1;
}
#impress h2{
font: normal 44px/1.5 'PT Sans Narrow', sans-serif;
color:#444648;
position:absolute;
z-index:10;
}
#impress p{
font: normal 18px/1.3 'Open Sans', sans-serif;
color:#27333f;
position:absolute;
z-index:10;
}
#impress img{
position:absolute;
z-index:1;
}
[/code]
jquery代碼,這段js代碼保存在script.js文件里面:
[code]
$(function(){
var imp = impress();
$('#arrowLeft').click(function(e){
imp.prev();
e.preventDefault();
});
$('#arrowRight').click(function(e){
imp.next();
e.preventDefault();
});
});
[/code]
下載地址
人氣腳本
相關(guān)文章
-
純css實(shí)現(xiàn)的3D立體雞蛋動(dòng)畫視覺(jué)效果源碼【帶光照與陰影】
一個(gè)基于純css實(shí)現(xiàn)的3D立體視覺(jué)效果雞蛋動(dòng)畫源碼,畫面中的一個(gè)平面上并排豎立著3個(gè)雞蛋,雞蛋呈現(xiàn)出有規(guī)律的左右搖擺動(dòng)作,同時(shí)雞蛋上方有光照在雞蛋上形成反射,下方還有光照...
-
CSS3炫彩文字動(dòng)畫背景特效源碼
是一段以i love you英文字母為示例制作的炫彩文字動(dòng)畫效果代碼,字母表面游彩虹色彩流動(dòng),非常有意思,可以根據(jù)自身需求更換文字,歡迎對(duì)此效果感興趣的朋友前來(lái)下載參考...
-
超炫酷CSS3登錄界面動(dòng)態(tài)特效源碼
利用css3+html5實(shí)現(xiàn)超炫酷的登錄動(dòng)態(tài)頁(yè)面特效,頁(yè)面功能包含有登錄默認(rèn)提示、驗(yàn)證碼,動(dòng)態(tài)登錄成功提示等,炫酷又好用...
-
CSS3實(shí)現(xiàn)的倒計(jì)時(shí)警報(bào)燈樣式特效源碼
CSS3倒計(jì)時(shí)警報(bào)燈樣式代碼是一款基于js跟css3實(shí)現(xiàn)的個(gè)性警報(bào)燈倒計(jì)時(shí)特效,歡迎感興趣的朋友前來(lái)下載參考...
-
CSS3實(shí)現(xiàn)的圣誕老人說(shuō)話表情動(dòng)畫特效
是一段基于CSS3制作的圣誕節(jié)圣誕老人人物動(dòng)畫效果代碼,圣誕節(jié)快要來(lái)臨了,感興趣的朋友們可以下載參考...
-
CCS3制作的橙色帶陰影漸變背景傾斜文字特效源碼
是一段基于css3實(shí)現(xiàn)的橙色帶陰影漸變背景傾斜文字效果代碼,網(wǎng)頁(yè)中你可以自己更改編輯,簡(jiǎn)單實(shí)用,歡迎對(duì)此效果感興趣的朋友前來(lái)參考...
下載聲明
☉ 解壓密碼:www.dbjr.com.cn 就是本站主域名,希望大家看清楚,[ 分享碼的獲取方法 ]可以參考這篇文章
☉ 推薦使用 [ 迅雷 ] 下載,使用 [ WinRAR v5 ] 以上版本解壓本站軟件。
☉ 如果這個(gè)軟件總是不能下載的請(qǐng)?jiān)谠u(píng)論中留言,我們會(huì)盡快修復(fù),謝謝!
☉ 下載本站資源,如果服務(wù)器暫不能下載請(qǐng)過(guò)一段時(shí)間重試!或者多試試幾個(gè)下載地址
☉ 如果遇到什么問(wèn)題,請(qǐng)?jiān)u論留言,我們定會(huì)解決問(wèn)題,謝謝大家支持!
☉ 本站提供的一些商業(yè)軟件是供學(xué)習(xí)研究之用,如用于商業(yè)用途,請(qǐng)購(gòu)買正版。
☉ 本站提供的jQuery+CSS3實(shí)現(xiàn)的超酷全屏產(chǎn)品切換展示效果資源來(lái)源互聯(lián)網(wǎng),版權(quán)歸該下載資源的合法擁有者所有。