Difference between revisions of "Template:Toc"

From The Official Visionaire Studio: Adventure Game Engine Wiki
Line 1: Line 1:
<noinclude>Generates a floating Table of contents menu in a fixed position on the left hand side of the screen.</noinclude>
 
<includeonly>
 
 
<html>
 
<html>
<script type="text/javascript">
+
<script>
 
$(document).ready(function() {
 
$(document).ready(function() {
 
  $(".ftoc").hover(function() {
 
  $(".ftoc").hover(function() {
 
$(this).animate({left:0}, 1000);
 
$(this).animate({left:0}, 1000);
  } else {
+
  }, function() {
 
$(this).animate({left:-250}, 1000);
 
$(this).animate({left:-250}, 1000);
 
  });
 
  });
Line 12: Line 10:
 
</script>
 
</script>
 
</html>
 
</html>
 +
 +
<noinclude>Generates a floating Table of contents menu in a fixed position on the left hand side of the screen.</noinclude>
 +
<includeonly>
 
<div class="ftoc">__TOC__</div>
 
<div class="ftoc">__TOC__</div>
 
</includeonly>
 
</includeonly>

Revision as of 23:15, 20 August 2014

Generates a floating Table of contents menu in a fixed position on the left hand side of the screen.