• Welcome to the Kancolle Wiki!
  • If you have any questions regarding site content, account registration, etc., please visit the KanColle Wiki Discord

Difference between revisions of "MediaWiki:Common.js"

From Kancolle Wiki
Jump to navigation Jump to search
Line 1: Line 1:
/* Sitenotice autoscroll */
+
function AutoScroll(obj) {
function AutoScroll(objNotice) {
+
     $(obj).find("ul:first").animate({
     $(objNotice).find("ul:first").animate({
+
  marginTop:"-25px"
        marginTop:"-25px"
+
  },500,function(){
    },500,function(){
+
  $(this).css({marginTop: "0px"}).find("li:first").appendTo(this);
        $(this).css({marginTop: "0px"}).find("li:first").appendTo(this);
+
  });
    });
+
}
}
+
 
 +
$(document).ready(function() {
 +
  setInterval('AutoScroll("#scrollDiv")',5000);
 +
});

Revision as of 16:21, 17 April 2015

function AutoScroll(obj) {
    $(obj).find("ul:first").animate({
   marginTop:"-25px"
  },500,function(){
   $(this).css({marginTop: "0px"}).find("li:first").appendTo(this);
  });
 }

 $(document).ready(function() {
  setInterval('AutoScroll("#scrollDiv")',5000);
 });