مدیاویکی:Gadget-sidebarToggle.js: تفاوت میان نسخهها
بدون خلاصۀ ویرایش |
بدون خلاصۀ ویرایش |
||
(۲۱ نسخهٔ میانیِ ایجادشده توسط همین کاربر نشان داده نشد) | |||
خط ۱: | خط ۱: | ||
(function( $, undefined ) { | (function( $, undefined ) { | ||
"use strict"; | "use strict"; | ||
/** | /** | ||
خط ۱۲۴: | خط ۸۶: | ||
* @param duration {mixed} Animation duration passed to jQuery. | * @param duration {mixed} Animation duration passed to jQuery. | ||
*/ | */ | ||
/* | |||
function collapse( duration ) { | function collapse( duration ) { | ||
خط ۱۵۴: | خط ۱۱۷: | ||
nodes.$leftNavigation.animate( animations.leftNavigation, duration); | nodes.$leftNavigation.animate( animations.leftNavigation, duration); | ||
$("collsidebar").css(" | $("#collsidebar").css("transform", "rotate(180deg)"); | ||
state = "collapsed"; | state = "collapsed"; | ||
} | } | ||
/** | /** | ||
* Expands the sidebar. | * Expands the sidebar. | ||
* @param duration {mixed} Animation duration passed to jQuery. | * @param duration {mixed} Animation duration passed to jQuery. | ||
function expand( duration ) { | function expand( duration ) { | ||
خط ۱۷۷: | خط ۱۴۰: | ||
animations.mwPanelIE[ flipCSSProp("left") ] = "-0.01em"; | animations.mwPanelIE[ flipCSSProp("left") ] = "-0.01em"; | ||
animations.mwPanelNonIE[ flipCSSProp("left") ] = 0; | animations.mwPanelNonIE[ flipCSSProp("left") ] = 0; | ||
animations.notSidebar[ flipCSSProp("margin-left") ] = " | animations.notSidebar[ flipCSSProp("margin-left") ] = "11em"; | ||
animations.leftNavigation[ flipCSSProp("left") ] = "10em"; | animations.leftNavigation[ flipCSSProp("left") ] = "10em"; | ||
خط ۱۹۱: | خط ۱۵۴: | ||
nodes.$notSidebar.animate( animations.notSidebar, duration ); | nodes.$notSidebar.animate( animations.notSidebar, duration ); | ||
nodes.$leftNavigation.animate( animations.leftNavigation, duration ); | nodes.$leftNavigation.animate( animations.leftNavigation, duration ); | ||
$("#collsidebar").css("transform", "rotate(0deg)"); | |||
state = "expanded"; | state = "expanded"; | ||
} | } | ||
*/ | |||
function totop() { | |||
$('html, body').animate({ scrollTop: 0 }, 500); | |||
} | |||
function fontsizeup() { | |||
var fontSize = parseInt($('p').css("font-size")); | |||
fontSize = fontSize + 3 + "px"; | |||
$('p').css({'font-size':fontSize}); | |||
} | |||
function fontsizedown() { | |||
var fontSize = parseInt($('p').css("font-size")); | |||
fontSize = fontSize - 3 + "px"; | |||
$('p').css({'font-size':fontSize}); | |||
} | |||
/** | /** | ||
* Called when the DOM is ready for manipulation. | * Called when the DOM is ready for manipulation. | ||
خط ۲۰۸: | خط ۱۸۹: | ||
// Show the toggle tab. | // Show the toggle tab. | ||
$("< | //$("<a class='sidebarbottons' id='collsidebar'></a>") | ||
// .prop( "title", "تغییر وضعیت فهرست سمت راست" ) | |||
// .click( toggle ) | |||
.click( | // .insertAfter("#mw-panel"); | ||
$("<a class='sidebarbottons' id='totop'></a>") | |||
.prop( "title", "بازگشت به بالا" ) | |||
.click( totop ) | |||
.insertAfter("#mw-panel"); | .insertAfter("#mw-panel"); | ||
$("<a class='sidebarbottons' id='fontsizeup'></a>") | |||
.prop( "title", "افزایش اندازه قلم" ) | |||
.click( fontsizeup ) | |||
.insertAfter("#mw-panel"); | |||
$("<a class='sidebarbottons' id='fontsizedown'></a>") | |||
.prop( "title", "کاهش اندازه قلم" ) | |||
.click( fontsizedown ) | |||
.insertAfter("#mw-panel"); | |||
/* | |||
// Respect the saved state. | // Respect the saved state. | ||
if ( state === "collapsed" ) { | if ( state === "collapsed" ) { | ||
collapse( 0 ); | collapse( 0 ); | ||
} | } | ||
*/ | |||
} | } | ||
خط ۲۳۲: | خط ۲۲۹: | ||
// Load translations and saved state. | // Load translations and saved state. | ||
dir = document.documentElement.dir; | dir = document.documentElement.dir; | ||
$.extend( msg, translations[document.documentElement.lang] ); | //$.extend( msg, translations[document.documentElement.lang] ); | ||
loadState(); | loadState(); | ||
خط ۲۴۴: | خط ۲۴۱: | ||
mw.loader.using( "jquery.client", main ); | mw.loader.using( "jquery.client", main ); | ||
})( jQuery ); | })( jQuery ); |