Last active
February 5, 2023 14:26
-
-
Save addisaden/600ec4b1df1b4e4a5ca83ebb2ed6cdf6 to your computer and use it in GitHub Desktop.
Revisions
-
addisaden revised this gist
Feb 5, 2023 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -14,3 +14,7 @@ v[0].setAttribute("style", "transform: rotate(270deg);position:fixed;left:350px; 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 -
addisaden created this gist
Feb 5, 2023 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ // 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")