Register a SA Forums Account here!
JOINING THE SA FORUMS WILL REMOVE THIS BIG AD, THE ANNOYING UNDERLINED ADS, AND STUPID INTERSTITIAL ADS!!!

You can: log in, read the tech support FAQ, or request your lost password. This dumb message (and those ads) will appear on every screen until you register! Get rid of this crap by registering your own SA Forums Account and joining roughly 150,000 Goons, for the one-time price of $9.95! We charge money because it costs us money per month for bills, and since we don't believe in showing ads to our users, we try to make the money back through forum registrations.
 
  • Post
  • Reply
Say Nothing
Mar 5, 2013

by FactsAreUseless
This is the new gif thread. Link huge images, and :nws: :nms: stuff.
Etc...

ik edit: here are the current video *monkey scripts to make them work nicer

JavaScript code:
// ==UserScript==
// @name        Fix videos - somethingawful.com
// @namespace   Violentmonkey Scripts
// @match       https://forums.somethingawful.com/*
// @version     1.0
// @author      -
// @description 2/27/2020, 11:56:31 PM
// ==/UserScript==

const fixVideos = setTimeout(function(){
  var videos = document.getElementsByTagName('video');
  for(var i = 0; i < videos.length; i++){
    videos[i].removeAttribute('loop');
    videos[i].controls = true;
    videos[i].pause();
    videos[i].currentTime = 0;
    videos[i].volume = 0.8;
    videos[i].muted = false;
  }
}, 500);
JavaScript code:
// ==UserScript==
// @name        Fix videos better - somethingawful.com
// @namespace   https://forums.somethingawful.com/
// @match       https://forums.somethingawful.com/*
// @version     0.2
// @author      Wheany, BlankSystemDaemon
// @description Sets embedded video size caps, auto-enables controls, embeds webms, sets volume to 20%, and prevents videos from looping. Last edited: 6/19/2023, 15:00:42 UTC
// ==/UserScript==


function processVideos() {
	[...document.getElementsByTagName('video')].forEach((v) => {
		v.removeAttribute('loop');
		v.pause();
		Object.assign(v, {
			currentTime: 0,
            		controls: true,
			volume: 0.8,
			muted: false
		});
		Object.assign(v.style, {
			maxWidth: '100%',
			maxHeight: '800px'
		});
	})
}

// required for dynamic webapp pages that modify the page with javascript
const observer = new MutationObserver(processVideos);
observer.observe(document.body, {
	childList: true,
	subtree: true
});

// handles simple pages like SA forums where the page structure doesn't change dynamically after being loaded
if(document.readyState === "interactive") {
	processVideos();
} else {
	document.addEventListener('DOMContentLoaded', processVideos);
}
Gifs!















Somebody has a new favorite as of 10:34 on Dec 23, 2023

Adbot
ADBOT LOVES YOU

Say Nothing
Mar 5, 2013

by FactsAreUseless
Get animated.















Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless
https://i.imgur.com/EL0pK4g.mp4

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless


This is not a gif, it's not moving

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless
https://i.imgur.com/jOaiTfI.mp4

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless
https://i.imgur.com/f0VI2kz.mp4

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Say Nothing
Mar 5, 2013

by FactsAreUseless

Adbot
ADBOT LOVES YOU

Say Nothing
Mar 5, 2013

by FactsAreUseless

  • 1
  • 2
  • 3
  • 4
  • 5
  • Post
  • Reply