<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">(function($){$.fn.kxbdMarquee=function(options){var opts=$.extend({},$.fn.kxbdMarquee.defaults,options);return this.each(function(){var $marquee=$(this);var _scrollObj=$marquee.get(0);var scrollW=$marquee.width();var scrollH=$marquee.height();var $element=$marquee.children();var $kids=$element.children();var scrollSize=0;var _type=(opts.direction=="left"||opts.direction=="right")?1:0;$element.css(_type?"width":"height",10000);if(opts.isEqual){scrollSize=$kids[_type?"outerWidth":"outerHeight"]()*$kids.length;}else{$kids.each(function(){scrollSize+=$(this)[_type?"outerWidth":"outerHeight"]();});};if(scrollSize&lt;(_type?scrollW:scrollH)){return;};$element.append($kids.clone()).css(_type?"width":"height",scrollSize*2);var numMoved=0;function scrollFunc(){var _dir=(opts.direction=="left"||opts.direction=="right")?"scrollLeft":"scrollTop";if(opts.loop&gt;0){numMoved+=opts.scrollAmount;if(numMoved&gt;scrollSize*opts.loop){_scrollObj[_dir]=0;return clearInterval(moveId);};};if(opts.direction=="left"||opts.direction=="up"){var newPos=_scrollObj[_dir]+opts.scrollAmount;if(newPos&gt;=scrollSize){newPos-=scrollSize;}
_scrollObj[_dir]=newPos;}else{var newPos=_scrollObj[_dir]-opts.scrollAmount;if(newPos&lt;=0){newPos+=scrollSize;};_scrollObj[_dir]=newPos;};};var moveId=setInterval(scrollFunc,opts.scrollDelay);$marquee.hover(function(){clearInterval(moveId);},function(){clearInterval(moveId);moveId=setInterval(scrollFunc,opts.scrollDelay);});});};$.fn.kxbdMarquee.defaults={isEqual:true,loop:0,direction:"left",scrollAmount:1,scrollDelay:20};$.fn.kxbdMarquee.setDefaults=function(settings){$.extend($.fn.kxbdMarquee.defaults,settings);};})(jQuery);</pre></body></html>