skdj的头像-次元神域
这家伙很懒,什么都没有写...
欢迎访问本站
您的访问时本站的荣幸
希望您能在本站
找到您想要的资源
后退
榜单
/* * @Project : 波浪JS动画 * @Author : Huliku * @Url : huliku.com * @LastEditTime : 2023-06-26 02:23:48 * @Email : ihuliku@qq.com */ $(function () { var marqueeScroll = function (id1, id2, id3, timer) { var $parent = $("#" + id1); var $goal = $("#" + id2); var $closegoal = $("#" + id3); $closegoal.html($goal.html()); function Marquee() { if (parseInt($parent.scrollLeft()) - $closegoal.width() >= 0) { $parent.scrollLeft(parseInt($parent.scrollLeft()) - $goal.width()); } else { $parent.scrollLeft($parent.scrollLeft() + 1); } } setInterval(Marquee, timer); } var marqueeScroll1 = new marqueeScroll("marquee-box", "wave-list-box1", "wave-list-box2", 20); var marqueeScroll2 = new marqueeScroll("marquee-box3", "wave-list-box4", "wave-list-box5", 40); });