MediaWiki:Common.js: Difference between revisions

From [N8]
Jump to navigation Jump to search
Mr Pie 5 (talk | contribs)
Created page with "Any JavaScript here will be loaded for all users on every page load.: $(function(){ // Creates a sliding gallery (carousel), such as the one on the main page functio..."
 
Mr Pie 5 (talk | contribs)
Add left fixed sidebar
Line 2: Line 2:


$(function(){
$(function(){
// Adds the left fixed sidebar
var sidebar = $("<nav>").attr("id","sidebar").appendTo(document.body);
var sidebarList = $("<ul>").attr("id", "sidebar__links").appendTo(sidebar);
$("<a>").text("Wiki").attr("href","https://wiki.geministation.com").append($("<img>").attr("src", "https://wiki.geministation.com/images/f/f7/G.png")).appendTo(sidebarList);
var links = [
["Mods", ""],
["Items", ""],
["Ships", ""],
["Places", ""],
["Missions", ""],
["Guides", ""]
]
for(var link of links){
$("<a>").text(link[0]).attr("href","https://wiki.geministation.com/" + link[0]).append($("<img>").attr("src", link[1])).appendTo(sidebarList);
}
// Creates a sliding gallery (carousel), such as the one on the main page
// Creates a sliding gallery (carousel), such as the one on the main page

Revision as of 00:52, 26 May 2022

/* Any JavaScript here will be loaded for all users on every page load. */

$(function(){
	
	// Adds the left fixed sidebar
	var sidebar = $("<nav>").attr("id","sidebar").appendTo(document.body);
	var sidebarList = $("<ul>").attr("id", "sidebar__links").appendTo(sidebar);
	$("<a>").text("Wiki").attr("href","https://wiki.geministation.com").append($("<img>").attr("src", "https://wiki.geministation.com/images/f/f7/G.png")).appendTo(sidebarList);
	var links = [
	["Mods", ""],
	["Items", ""],
	["Ships", ""],
	["Places", ""],
	["Missions", ""],
	["Guides", ""]
	]
	for(var link of links){
		$("<a>").text(link[0]).attr("href","https://wiki.geministation.com/" + link[0]).append($("<img>").attr("src", link[1])).appendTo(sidebarList);
	}
	
	// Creates a sliding gallery (carousel), such as the one on the main page
	function galleryRight(galleryContainer, width){
		var gallery = galleryContainer.querySelector('ul.gallery');
		gallery.scroll({
			left:parseInt(gallery.scrollLeft)+width+4,
			behavior:'smooth',
		});
	}
	function galleryLeft(galleryContainer, width){
		var gallery = galleryContainer.querySelector('ul.gallery');
		gallery.scroll({
			left:parseInt(gallery.scrollLeft)-width-4,
			behavior:'smooth',
		});
	}
	$(".sliding-gallery").each(function(gallery){
		var $buttons = $("<div></div>").addClass("sliding-gallery--buttons");
		var width = this.getElementsByTagName("img")[0].getAttribute("width");
		$("<button></button>").addClass("sliding-gallery--button right").text("🡒").on("click", galleryRight.bind(this, this, parseInt(width))).appendTo($buttons);
		$("<button></button>").addClass("sliding-gallery--button left").text("🡐").on("click", galleryLeft.bind(this, this, parseInt(width))).appendTo($buttons);
		$buttons.appendTo(this);
	});
})