0
点赞
收藏
分享

微信扫一扫

模拟手机滚屏交互滚动幻灯片

 模拟手机滚屏交互滚动幻灯片,可以用于展示小程序,微信公众号,手机网站等,

模拟手机滚屏交互滚动幻灯片_小程序

主要代码

<script>
$(document).ready(function () {
$(".xcx_dowhat_list ul li").hover(function () {
$(".xcx_dowhat_list ul li").removeClass("current");
$i = $(this).index();
$(this).addClass("current");
top1 = -$i * 364;
$(".xcx_phone_main ul").stop(true, false).animate({"top": top1});
});
});
</script>




举报

相关推荐

0 条评论