87,988
社区成员




$("#seckillWrap").find('.shares').one('mouseover',function() {
$(this).shareSet({
callback:function(obj){
var ajaxUrl='/front/share/product.html';
ajaxUrl += '?goods_id='+obj.attr('id')+'&t='+ Date.parse(new Date());
$.get(ajaxUrl,function(data) {});
}
});
});
.homepage .seckill>.seckill_con>.seckill_goods .shares:hover {
width: 170px;
}
.homepage .seckill .shares{
position: absolute;
top:6px;
left: 6px;
padding-left: 26px;
line-height: 28px;
text-align: left;
font-size: 12px;
font-family: 'SimSun';
width: 0;
overflow: hidden;
height: 26px;
cursor: pointer;
border-radius: 13px;
-webkit-transition: all .35s ease-in-out;
-o-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out;
transition: all .35s ease-in-out;
background-color: #fff;
background-color: rgba(255,255,255,.8);
background-repeat: no-repeat;
background-position: 6px center;
background-image: url(/themes/1zw/assets/images/base/share_icon.png);
}
百度一下:transition这个玩意。