zl程序教程

您现在的位置是:首页 >  其它

当前栏目

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

交互 滚动 幻灯片
2023-09-11 14:14:50 时间

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


主要代码

<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>

代码下载地址:https://download.csdn.net/download/cplvfx/10431880