Last active
February 5, 2023 14:26
-
-
Save addisaden/600ec4b1df1b4e4a5ca83ebb2ed6cdf6 to your computer and use it in GitHub Desktop.
Gospelchurch Cologne Livestream watch in browser to rotate the livestream https://www.gospelchurch.koeln/ TUTORIAL: https://www.youtube.com/shorts/HP6iQVKGE-Y?feature=share
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Simple script to rotate | |
// | |
// Surf on | |
// https://www.instagram.com/gospelchurch_cologne/live/ | |
// | |
// open Browser-Console (CTRL+Shift+K firefox or CTRL+Shift+J chrome | |
// Copy and Paste: Rotate 270deg (LEFT ROTATE) | |
var v = document.getElementsByTagName("video") | |
v[0].setAttribute("style", "transform: rotate(270deg);position:fixed;left:350px;top:-200px;width:600px;z-index:100") | |
// Copy and Paste: Rotate 90deg (RIGHT ROTATE) | |
var v = document.getElementsByTagName("video") | |
v[0].setAttribute("style", "transform: rotate(90deg);position:fixed;left:350px;top:-200px;width:600px;z-index:100") | |
// Example as Video: | |
// https://www.youtube.com/shorts/HP6iQVKGE-Y?feature=share |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment