MediaWiki:Common.js/ftoc.js

From The Official Visionaire Studio: Adventure Game Engine Wiki
< MediaWiki:Common.js
Revision as of 11:06, 5 November 2014 by David Stoffel (talk) (Created page with "Any JavaScript here will be loaded for all users on every page load.: $(document).ready(function() { $('.ftoc_content').slimScroll({ color: '#5bc0de', height: '390'...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
/* Any JavaScript here will be loaded for all users on every page load. */
$(document).ready(function() {

 $('.ftoc_content').slimScroll({
  color: '#5bc0de',
  height: '390',
  railVisible: true,
  railOpacity: 0.2,
  allowPageScroll: false,
  alwaysVisible: true,
  disableFadeOut: true
 });

$(".ftoc").hover(function() {
 $(".ftoc").stop().animate({left:'0px'}, 250, function() {
 $(".ftoc_content").stop().animate({left:'5px'}, 500);
  });
 }, function() {
 $(".ftoc").stop().animate({left:'-250px'}, 250);
 $(".ftoc_content").stop().animate({left:'-500px'}, 250);
 });

});