MediaWiki:Common.js/ftoc.js

From The Official Visionaire Studio: Adventure Game Engine Wiki
< MediaWiki:Common.js
Revision as of 17:35, 28 August 2022 by AFRLme (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
$(document).ready(function() {

 $('.ftoc_content').slimScroll({
  color: '#ff9900',
  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);
 });

});