如果光标在图像上在某种意义上不停止.它正在运行

if the cursor over on the image in the sense marquee not stop. it is running

本文关键字:不停止 意义上 运行 光标 图像 如果      更新时间:2023-09-26

请参考这个网站。我在畅销产品中使用过选框。当我在快速视图弹出的感觉中去图像时。如果图像结束意味着它将停止。但是在快速视图图像上,从某种意义上说,它并没有停止。我怎么能阻止这个。请帮助我,它正在消磨我的时间。以下代码使用此选框。

<script type="text/javascript">
jQuery.noConflict();
(function($) {
    $(function() {
        $(".items").simplyScroll({autoMode: 'bounce'});
    });
})(jQuery);
</script>

Quickshop ID 位于图像上,包括div 项目。只需将相同的功能添加到快速商店链接

<script type="text/javascript">
jQuery.noConflict();
(function($) {
    $(document).ready(function() {
        $(".items, #em_quickshop_handler").simplyScroll({autoMode: 'bounce'});
    });
})(jQuery);
</script>