مدیاویکی:Gadget-goToTop.js: تفاوت میان نسخه‌ها

از ایران پدیا
پرش به ناوبری پرش به جستجو
جز (۱ نسخه واردشده)
 
جز (۱ نسخه واردشده)
 
(بدون تفاوت)

نسخهٔ کنونی تا ‏۲ دسامبر ۲۰۱۷، ساعت ۱۰:۴۷

/* 
This script was given to me by ultradude25 of the Minecraft Wiki.
If adding this to your userspace, please provide attribution to the original author.
http://minecraftwiki.net/wiki/User:ultradude25/goToTop.js/
copied from[en:User:Numbermaniac/goToTop.js]
Translate & Developed By: [fa:User:MohandesWiki]*/
$( function() {
'use strict';


$( 'body' ).append( '<span id="to-top">▲رفتن به ابتدا▲</span>' );
var $topButton = $( '#to-top' );

$topButton.css( {
	'color': '#000',
	'background-color': '#fff',
	'opacity': '0.6',
	'border': '1px solid #ccc',
	'border-radius': '10px',
	'padding': '5px 10px',
	'position': 'fixed',
	'bottom': '-50px',
	'left': '4px',
	'cursor': 'pointer',
	'transition': 'bottom 0.5s',
	'-webkit-transition': 'bottom 0.5s',
	'user-select': 'none',
	'-webkit-user-select': 'none',
	'-moz-user-select': 'none',
	'-ms-user-select': 'none'
} ).click( function() {
	$( 'html, body' ).animate( { scrollTop: 0 }, 'slow' );
} );

$( window ).scroll( function() {
	if ( $( window ).scrollTop() > 100 ) {
		$topButton.css( 'bottom', '4px' );
	} else {
		$topButton.css( 'bottom', '-50px' );
	}
} );


} );