Merge branch 'main' of ssh://git.bullercodeworks.com:2200/brian/userscripts

This commit is contained in:
Brian Buller 2021-04-12 14:31:25 -05:00
commit f7e5a1f79b

View File

@ -1,9 +1,9 @@
// ==UserScript==
// @name DuckDuckGo Images Slideshow
// @namespace https://bullercodeworks.com
// @version 0.1
// @version 0.3
// @description Takes a DuckDuckGo Images page and turns it into a slideshow.
// @author You
// @author brian@bullercodeworks.com
// @match https://duckduckgo.com/*
// @grant none
// ==/UserScript==
@ -12,7 +12,6 @@
'use strict';
var init = function() {
console.log("Starting Slideshow");
lb.style.textAlign = 'center';
lb.style.height = '100%';
lb.style.width = '100%';
@ -24,6 +23,12 @@
document.body.prepend(lb);
lbimg.style.objectFit = 'cover';
lb.append(lbimg);
imgCounter.style.backgroundColor = 'rgba(0, 0, 0, 0.85)';
imgCounter.style.color = 'white';
imgCounter.style.position = 'fixed';
imgCounter.style.top = '0px';
imgCounter.style.left = '0px';
lb.append(imgCounter);
running = true;
showImage(0);
}
@ -53,6 +58,7 @@
var imgcount=allimages.length;
var lb = document.createElement('div');
var lbimg = document.createElement('img');
var imgCounter = document.createElement('span');
var lastScroll = 0;
@ -65,7 +71,7 @@
var testimages = document.querySelectorAll('img');
var testcount = testimages.length;
if(testcount > imgcount) {
console.log("Image Count Changed:"+testcount+" > "+imgcount);
console.log("Loading more images...");
imgcount = testcount;
allimages = testimages;
}
@ -83,8 +89,9 @@
timer = setTimeout(() => showImage(++idx), 100);
return;
}
allimages[idx].click();
allimages[idx].scrollIntoView();
console.log("Showing Image "+idx+" :: "+allimages[idx]);
console.log("Showing Image "+idx+" ("+allimages[idx]+")");
var useHeight=allimages[idx].height > allimages[idx].width;
if(useHeight){
lbimg.style.height = '100%';
@ -94,6 +101,7 @@
lbimg.style.width = '100%'
}
lbimg.src = allimages[idx].src;
imgCounter.innerText = "Image " + idx + " / " + imgcount;
timer = setTimeout(() => showImage(++idx), imageTime);
}
@ -137,10 +145,10 @@
function pause(){
if(paused){
console.log("resume");
console.log("Resuming Slideshow");
showImage(currimg);
} else {
console.log("pause");
console.log("Pausing Slideshow");
clearTimeout(timer);
}
paused = !paused;
@ -148,7 +156,7 @@
function rewind() {
console.log("rewind");
console.log("Rewinding Slideshow");
clearTimeout(timer);
currimg = currimg-1;
showImage(currimg);
@ -156,35 +164,45 @@
function fastforward() {
console.log("fast forward");
console.log("Fast Forwarding Slideshow");
clearTimeout(timer);
currimg = currimg+1;
showImage(currimg);
}
document.addEventListener('keyup',(e)=>{
document.addEventListener('keydown',(e)=>{
if(!running) { return; }
var stopProp = false;
switch(e.code) {
case 'Space':
pause();
return true;
case 'ArrowLeft':
stopProp = true;
break;
case 'KeyH':
rewind();
return true;
case 'ArrowRight':
stopProp = true;
break;
case 'KeyL':
fastforward();
return true;
stopProp = true;
break;
case 'KeyT':
promptTime();
return true;
stopProp = true;
break;
case 'KeyG':
goto();
return true;
stopProp = true;
break;
case 'Escape':
clearTimeout(timer);
running = false;
lb.remove();
stopProp = true;
}
if(stopProp) {
e.stopPropagation();
}
return stopProp;
});
})();