亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

jQuery實(shí)現(xiàn)加入購(gòu)物車飛入動(dòng)畫效果

 更新時(shí)間:2015年03月14日 14:29:02   投稿:hebedich  
當(dāng)您在電商購(gòu)物網(wǎng)站瀏覽中意的商品時(shí),您可以點(diǎn)擊頁(yè)面中的“加入購(gòu)物車”按鈕即可將商品加入的購(gòu)物車中。本文介紹借助一款基于jQuery的動(dòng)畫插件,點(diǎn)擊加入購(gòu)物車按鈕時(shí),實(shí)現(xiàn)商品將飛入到右側(cè)的購(gòu)物車中的效果。

HTML

首先載入jQuery庫(kù)文件和jquery.fly.min.js插件。

復(fù)制代碼 代碼如下:

<script src="jquery.js"></script>
<script src="jquery.fly.min.js"></script>

接著,將商品信息html結(jié)構(gòu)布置好,本例中,我們用四個(gè)商品并排布置,每個(gè)商品box中包括有商品圖片、價(jià)格、名稱以及加入購(gòu)物車按鈕等信息。

復(fù)制代碼 代碼如下:

<div class="box">
    <img src="images/lg.jpg" width="180" height="180">
    <h4>¥<span>3499.00</span></h4>
    <p>LG 49LF5400-CA 49寸IPS硬屏富貴招財(cái)銅錢設(shè)計(jì)</p>
    <a href="#" class="button orange addcar">加入購(gòu)物車</a>
</div>
<div class="box">
    <img src="images/hs.jpg" width="180" height="180">
    <h4>¥<span>3799.00</span></h4>
    <p>Hisense/海信 LED50T1A 海信電視官方旗艦店</p>
    <a href="#" class="button orange addcar">加入購(gòu)物車</a>
</div>
<div class="box">
    <img src="images/cw.jpg" width="180" height="180">
    <h4>¥<span>¥3999.00</span></h4>
    <p>Skyworth/創(chuàng)維 50E8EUS 8核4Kj極清酷開系統(tǒng)智能液晶電視</p>
    <a href="#" class="button orange addcar">加入購(gòu)物車</a>
</div>
<div class="box">
    <img src="images/ls.jpg" width="180" height="180">
    <h4>¥<span>6969.00</span></h4>
    <p>樂視TV Letv X60S 4核1080P高清3D安卓智能超級(jí)電視</p>
    <a href="#" class="button orange addcar">加入購(gòu)物車</a>
</div>

然后,我們還需要在頁(yè)面的右側(cè)加上購(gòu)物車以及提示信息。

復(fù)制代碼 代碼如下:

<div class="m-sidebar">
    <div class="cart">
        <i id="end"></i>
        <span>購(gòu)物車</span>
    </div>
</div>
<div id="msg">已成功加入購(gòu)物車!</div>

CSS
我們使用CSS先將商品排列美化,然后設(shè)置右側(cè)購(gòu)物車樣式,具體請(qǐng)看代碼:
 

復(fù)制代碼 代碼如下:

.box{float:left; width:198px; height:320px; margin-left:5px; border:1px solid #e0e0e0; text-align:center}
.box p{line-height:20px; padding:4px 4px 10px 4px; text-align:left}
.box:hover{border:1px solid #f90}
.box h4{line-height:32px; font-size:14px; color:#f30;font-weight:500}
.box h4 span{font-size:20px}
.u-flyer{display: block;width: 50px;height: 50px;border-radius: 50px;position: fixed;z-index: 9999;}
.m-sidebar{position: fixed;top: 0;right: 0;background: #000;z-index: 2000;width: 35px;height: 100%;font-size: 12px;color: #fff;}
.cart{color: #fff;text-align:center;line-height: 20px;padding: 200px 0 0 0px;}
.cart span{display:block;width:20px;margin:0 auto;}
.cart i{width:35px;height:35px;display:block; background:url(car.png) no-repeat;}
#msg{position:fixed; top:300px; right:35px; z-index:10000; width:1px; height:52px; line-height:52px; font-size:20px; text-align:center; color:#fff; background:#360; display:none}

jQuery

我們要實(shí)現(xiàn)的效果是,當(dāng)用戶點(diǎn)擊“加入購(gòu)物車”按鈕時(shí),當(dāng)前商品圖片會(huì)變成一個(gè)縮小的圓球,以按鈕為起點(diǎn),向右側(cè)以拋物線的形式飛出,最后落入頁(yè)面右側(cè)的購(gòu)物車?yán)?,并提示操作成功。在飛出之前,我們要獲取當(dāng)前商品的圖片,然后調(diào)用fly插件,之后的拋物線軌跡都是由fly插件完成,我們只需定義起點(diǎn)和終點(diǎn)等參數(shù)即可。

復(fù)制代碼 代碼如下:

<script>
$(function() {
    var offset = $("#end").offset();
    $(".addcar").click(function(event){
        var addcar = $(this);
        var img = addcar.parent().find('img').attr('src');
        var flyer = $('<img class="u-flyer" src="'+img+'">');
        flyer.fly({
            start: {
                left: event.pageX, //開始位置(必填)#fly元素會(huì)被設(shè)置成position: fixed
                top: event.pageY //開始位置(必填)
            },
            end: {
                left: offset.left+10, //結(jié)束位置(必填)
                top: offset.top+10, //結(jié)束位置(必填)
                width: 0, //結(jié)束時(shí)寬度
                height: 0 //結(jié)束時(shí)高度
            },
            onEnd: function(){ //結(jié)束回調(diào)
                $("#msg").show().animate({width: '250px'}, 200).fadeOut(1000); //提示信息
                addcar.css("cursor","default").removeClass('orange').unbind('click');
                this.destory(); //移除dom
            }
        });
    });
});
</script>

復(fù)制上面的代碼,保存并運(yùn)行即可看到效果,F(xiàn)ly插件的項(xiàng)目官網(wǎng)地址是:https://github.com/amibug/fly,值得一提的是,IE10以下需要添加以下js:

<script src="requestAnimationFrame.js"></script>

以上就是本文的全部?jī)?nèi)容了,希望大家能夠喜歡

相關(guān)文章

最新評(píng)論