您好,登錄后才能下訂單哦!
以前用JQuery寫過(guò)一個(gè)縱深方向上的圖片旋轉(zhuǎn)效果,在這里拿出來(lái)跟大家分享下,貼上一張圖片看看效果是如何的:
其實(shí)現(xiàn)原理并不復(fù)雜,在數(shù)學(xué)上只用到了其中的正弦函數(shù),制作過(guò)程大致如下:
(1)先定義好圖片旋轉(zhuǎn)的半徑
(2)圖片旋轉(zhuǎn)的過(guò)程需要用到setInterval()方法,來(lái)獲取每一張圖片所在位置的的角度,角度會(huì)根據(jù)時(shí)間變化逐漸變化
(3)根據(jù)一個(gè)數(shù)學(xué)公式:x=R*SIN(deg)可以獲得圖片在X方向的位置
(4)透明度的設(shè)置其實(shí)也是根據(jù)圖片旋轉(zhuǎn)時(shí)候的角度來(lái)定的。初始設(shè)置圖片在正前方時(shí)是0度,無(wú)論是正時(shí)針還是逆時(shí)針?lè)绞叫D(zhuǎn),當(dāng)圖片旋轉(zhuǎn)角度大于0度
小于180度時(shí)圖片的透明度是逐漸減小的,這里為了圖片在180度時(shí)不至于完全透明加了個(gè)小小的計(jì)算公式,代碼會(huì)在下面展示。
(5)圖片的縮放也是根據(jù)圖片旋轉(zhuǎn)角度而定的,相信容易理解。
(6)有了圖片的X軸位置信息,縮放信息,透明度信息后,接下來(lái)就是很簡(jiǎn)單的事情了,只要將所有的信息通過(guò)CSS樣式顯示出來(lái)就可以了。
css的樣式會(huì)通過(guò)setInterval()方法逐漸改變。
下面來(lái)看下主要代碼:
var thisleft=-(o.radius)*Math.sin((360/imgnum)*$(this).data("index")*(Math.PI*2/360))+(holderwidth/2); var thiszindex=360/imgnum*$(this).data("index")>180?360/imgnum*$(this).data("index")-360:-360/imgnum*$(this).data("index"); var thisopacity=360/imgnum*$(this).data("index")<=180?(180-360/imgnum*$(this).data("index"))/180*1.2: (360/imgnum*$(this).data("index")-180)/180*1.2;
第二行的thiszindex是圖片的深度信息,對(duì)每張圖片我都給它加了一個(gè)index屬性保存其索引值,圖片會(huì)根據(jù)這個(gè)信息通過(guò)計(jì)算得到相應(yīng)的深度值。
第三行的thisopacity是圖片的透明度信息。
每一張圖片都會(huì)被賦予一下的CSS樣式:
$(this).css({ "left":thisleft-(o.width*thisopacity)/2+"px", "top":(holderheight/2)-o.width*(thisopacity+1)/4, "z-index":thiszindex+180, "opacity":(thisopacity+0.2)/1.2, "width":o.width*(thisopacity+1)/2, "height":o.height*(thisopacity+1)/2 });
第五行的opacity用了一個(gè)簡(jiǎn)單的公式使其在最深度時(shí)不至于完全透明。
在功能上我加了左右轉(zhuǎn)的功能,其原理也就是將圖片的X軸信息的正負(fù)值轉(zhuǎn)換而已,代碼如下:
if(dir=='left'){ thisleft=-(o.radius)*Math.sin(xx*(Math.PI*2/360))+(holderwidth/2); }else{ thisleft=(o.radius)*Math.sin(xx*(Math.PI*2/360))+(holderwidth/2); }
整個(gè)效果中用戶可以自定義一下參數(shù):
$.fn.scroll3d.defaults={ speed:25, radius:100, width:200, height:150, direction:'left' }
下面附上效果的完整代碼:
(function($) { $.fn.scroll3d = function(options) { var opts = $.extend({}, $.fn.scroll3d.defaults, options); var $this = $(this); var o = $.meta ? $.extend({}, opts, $(this).data()) : opts; var radius = o.radius; var timer = 0; var xx = 0; var speed = o.speed; var dir = o.direction; $(this).hide(); return this.each(function() { var $img = $(this).find('img').css({'position': 'absolute'}), num = 0; var imgnum = $img.length; var holderwidth = $(this).width(), holderheight = $(this).height(); $img.each(function(i) { var imgsrc = $(this).attr("src"); $(this).data({ "index": i }); $(this).load(function() { ++num; if (num == imgnum) { $this.show(); } }).attr({ "src": imgsrc }); var thisleft = -(o.radius) * Math.sin((360 / imgnum) * $(this).data("index") * (Math.PI * 2 / 360)) + (holderwidth / 2); var thiszindex = 360 / imgnum * $(this).data("index") > 180 ? 360 / imgnum * $(this).data("index") - 360 : -360 / imgnum * $(this).data("index"); var thisopacity = 360 / imgnum * $(this).data("index") <= 180 ? (180 - 360 / imgnum * $(this).data("index")) / 180 * 1.2 : (360 / imgnum * $(this).data("index") - 180) / 180 * 1.2; $(this).attr({ "nowdeg": (360 / imgnum) * $(this).data("index") }); $(this).css({ "left": thisleft - (o.width * thisopacity) / 2 + "px", "top": (holderheight / 2) - o.width * (thisopacity + 1) / 4, "z-index": thiszindex + 180, "opacity": (thisopacity + 0.2) / 1.2, "width": o.width * (thisopacity + 1) / 2, "height": o.height * (thisopacity + 1) / 2 }); }); function scrollimg() { $img.each(function() { var thisdeg = $(this).attr('nowdeg'); var thisleft; xx = thisdeg; if (dir == 'left') { thisleft = -(o.radius) * Math.sin(xx * (Math.PI * 2 / 360)) + (holderwidth / 2); } else { thisleft = (o.radius) * Math.sin(xx * (Math.PI * 2 / 360)) + (holderwidth / 2); } var thiszindex = xx > 180 ? xx - 360 : -xx; var thisopacity = xx <= 180 ? (180 - xx) / 180 : ($(this).attr('nowdeg') - 180) / 180; $(this).css({ "left": thisleft - (o.width * thisopacity) / 2 + "px", "top": (holderheight / 2) - o.width * (thisopacity + 1) / 4, "z-index": thiszindex + 180, "opacity": (thisopacity + 0.2) / 1.2, "width": o.width * (thisopacity + 1) / 2, "height": o.height * (thisopacity + 1) / 2 }); xx++; if (xx > 360) xx = 0; $(this).attr({ "nowdeg": xx }); }); }; var tt = setInterval(scrollimg, speed); $img.hover(function() { clearInterval(tt); }, function() { tt = setInterval(scrollimg, speed); }); }); }; $.fn.scroll3d.defaults = { speed: 25, radius: 300, width: 200, height: 150, direction: 'left' } })(jQuery);
在HTML中只需要有一個(gè)DIV包含你所需要的圖片就可以完成這個(gè)效果,例如:
<div class="holder" > <img src="img/1.jpg" /> <img src="img/2.jpg" /> <img src="img/3.jpg" /> <img src="img/1.jpg" /> <img src="img/2.jpg" /> </div>
代碼的調(diào)用可以這樣寫:
$('.holder').scroll3d();
寫的有點(diǎn)亂七八糟,還望各位見(jiàn)諒!
壓縮包:test_jb51.rar
以上就是本文的全部?jī)?nèi)容,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來(lái)一定的幫助,同時(shí)也希望多多支持億速云!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。