Difference between revisions of "Template:Toc"

From The Official Visionaire Studio: Adventure Game Engine Wiki
 
(146 intermediate revisions by 2 users not shown)
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>
+
<noinclude>Generates a floating Table of contents menu in a fixed position on the left hand side of the screen.
 +
Javascript's ''were'' (they weren't loading correctly) in Template: MediaWiki:Common.js/ftoc.js and MediaWiki:Common.js/slimscroll.js
 +
</noinclude>
 
<includeonly>
 
<includeonly>
<html>
+
<html><!-- Load font awesome icons -->
<script>
+
<script src="https://kit.fontawesome.com/6e484b4310.js" crossorigin="anonymous"></script>
$(document).ready(function() {
+
<!--link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"-->
$(".ftoc").hover(function() {
+
<!-- The social media icon bar -->
$(this).animate({left:'0px'}, 250);
+
<div class="icon-bar">
        $(".ftoc_content").fadeIn(3000);
+
  <a href="https://discord.gg/g5zFejW" target="_blank"><span class="discord"><i class="fa-brands fa-discord"></i></span></a>
  }, function() {
+
  <a href="https://www.facebook.com/VisionaireStudio/target="_blank"><span class="facebook"><i class="fa-brands fa-facebook-f"></i></span></a>
$(this).animate({left:'-150px'}, 250);
+
  <a href="https://twitter.com/visstudio_en" target="_blank"><span class="twitter"><i class="fa-brands fa-twitter"></i></span></a>
      $(".ftoc_content").fadeOut("fast");
+
</div></html>
});
+
 
});
+
<div class="ftoc"><div class="ftoc_content">__TOC__</div></div>
</script>
 
</html>
 
<div class="ftoc">
 
<span class="ftoc_content">__TOC__</span>
 
</div>
 
 
</includeonly>
 
</includeonly>

Latest revision as of 15:31, 6 October 2022

Generates a floating Table of contents menu in a fixed position on the left hand side of the screen. Javascript's were (they weren't loading correctly) in Template: MediaWiki:Common.js/ftoc.js and MediaWiki:Common.js/slimscroll.js