¥3799.00
加入购物车
¥3999.00
Skyworth/创维 50E8EUS 8核4Kj极清酷开系统智能液晶电视
加入购物车
¥3499.00
LG 49LF5400-CA 49寸IPS硬屏富贵招财铜钱设计
加入购物车
¥3799.00
加入购物车
¥3999.00
Skyworth/创维 50E8EUS 8核4Kj极清酷开系统智能液晶电视
加入购物车
0 js /// //在这里装入了元素滑翔的核心代码 var i = 0; $(function () {//页面加载完毕之后,进行以下操作 $(“.probtn a”).click(function () {//点击加入购入车之后 $(this).css(“background-color”, “#ccc”).unbind(“click”);//使用this表示当前点击对象。点击之后设置背景颜色为灰色。并且清除掉点击事件。不允许二次点击 i++;//在这里计算加进购物车的数量 var thisImg = $(this).parent().parent().find(“img”);//找到当前点击的按钮对应的图片 var cloneImg = thisImg.clone();//把找到的图片复制一份,为了后面做效果的时候使用 cloneImg.css({//初始化克隆的图片样式 “width”: thisImg.width(), “height”: thisImg.height(), //“border-radius”: “100%”, “position”: “absolute”, “left”: thisImg.offset().left, “top”: thisImg.offset().top, “z-index”: 2,//设置克隆的图片覆盖在原有图片的上边。z-index的值越大,所在的层级越靠上 “opacity”: “.8”//把透明度设置为原有图片的80%,也可以写成0.8 }); cloneImg.appendTo($(“body”)).animate({//把复制并且设置好的图片加到网页中,并执行一个滑动的动画 “left”: $(“#dcar”).offset().left,//设置滑动后的结束状态 “top”: $(“#dcar”).offset().top, “height”: “30px”, “width”: “30px” }, 1000, function () {//滑动结束后要进行怎样的处理 cloneImg.remove();//把图片从网页中移除掉 $(“.dnum”).text(i);//顺便把购物车里面的值更新一下 }); }); }); css • { padding: 0px; margin: 0px; font-family: “微软雅黑”; } a { text-decoration: none; } .proitem { width: 222px; height: 354px; border: solid 1px #ccc; float: left; margin: 5px; } #prolist { width: 750px; } .proprice { width: 222px; text-align: center; color: #f00; font-size: 20px; font-weight: 900; } .protitle { width: 222px; text-align: center; font-size: 14px; margin: 10px 0px; } .protitle a { color: #383636; } .probtn a { width: 150px;