🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

Toggle Zoom

Extend image zoom modes with scale-to-width and scale-to-height of window

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey, Greasemonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals {tampermonkey_link:Tampermonkey}.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Userscripts.

Voor het installeren van scripts heb je een extensie nodig, zoals {tampermonkey_link:Tampermonkey}.

Voor het installeren van scripts heb je een gebruikersscriptbeheerder nodig.

(Ik heb al een user script manager, laat me het downloaden!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

(Ik heb al een beheerder - laat me doorgaan met de installatie!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

// ==UserScript==
// @name        Toggle Zoom
// @namespace   Nickel
// @description Extend image zoom modes with scale-to-width and scale-to-height of window
// @version     0.5
// @license     GNU General Public License v3
// @copyright   2022, Nickel
// @author      Nickel
// @grant       none
// @run-at      document-start
// @noframes
// @include     *
// ==/UserScript==


(function(){

function unscaled() {
	img.removeAttribute( "width" );
	img.removeAttribute( "height" );
	mode = "unscaled";
	document.title = titleBase;
}
function scaleToWidth() {
	img.removeAttribute( "height" );
	img.width = document.documentElement.clientWidth;
	// do it again due to scrollbars that may have (dis)appeared
	img.width = document.documentElement.clientWidth;
	mode = "scaleToWidth";
	document.title = titleBase + " — " + mode + " (" + (100*img.width/img.naturalWidth).toFixed(0) + "%)";
}
function scaleToHeight() {
	img.removeAttribute( "width" );
	img.height = document.documentElement.clientHeight;
	// do it again due to scrollbars that may have (dis)appeared
	img.height = document.documentElement.clientHeight;
	mode = "scaleToHeight";
	document.title = titleBase + " — " + mode + " (" + (100*img.width/img.naturalWidth).toFixed(0) + "%)";
}

function toggle() {
	if( (img.naturalWidth / img.naturalHeight) > (document.documentElement.clientWidth / document.documentElement.clientHeight) ) {
		if( mode == "unscaled" ) {
			scaleToHeight();
			// next is scaleToWidth
			img.style.cursor = "zoom-out";
		}
		else if( mode == "scaleToHeight" || mode == "doScaleToFit" ) {
			scaleToWidth();
			// next is unscaled
			if( img.naturalWidth > document.documentElement.clientWidth ) img.style.cursor = "zoom-in";
			else img.style.cursor = "zoom-out";
		}
		else {
			unscaled();
			// next is scaleToHeight
			img.style.cursor = "zoom-in";
		}
	}
	else {
		if( mode == "unscaled" ) {
			scaleToWidth();
			// next is scaleToHeight
			img.style.cursor = "zoom-out";
		}
		else if( mode == "scaleToWidth" || mode == "doScaleToFit" ) {
			scaleToHeight();

			// next is unscaled
			if( img.naturalHeight > document.documentElement.clientHeight ) img.style.cursor = "zoom-in";
			else img.style.cursor = "zoom-out";
		}
		else {
			unscaled();
			// next is scaleToWidth
			img.style.cursor = "zoom-in";
		}
	}
}

function initialize() {
	if( initialized == true ) return;
	initialized = true;

	// Firefox does some weird shit
	img.style.marginTop = "0";

	titleBase = document.title.replace( / — Scaled.*$/, "" );

	// set initial mode by setting do* and toggling
	if( (img.naturalWidth > document.documentElement.clientWidth) || (img.naturalHeight > document.documentElement.clientHeight) ) mode = "doScaleToFit";
    else mode = "doUnscaled";
    toggle();

	// add new left mouse button event listener
	// NOTE: would prefer to put listener on `img` instead of `document` to not react to clicks on blank space
	document.addEventListener( "click", function(e) {
		if( e.button === 0 ) {
			e.stopPropagation();
			toggle();
		}
	}, true );
}

var initialized = false;
var img = document.images[0];
if( typeof img === 'undefined' ) return;
if( img.src != window.location.href ) return;

// get image metadata as early as possible
wait = setInterval( function() {
	if( img.naturalWidth !== 0 && img.naturalHeight !== 0 && document.title !== "" ) {
		clearInterval(wait);
		initialize();
	}
}, 10 );
// also try initializing when image finishes loading
img.onload = initialize;

})();