Skip to content

Instantly share code, notes, and snippets.

@MP-C
Last active July 26, 2022 13:16
Show Gist options
  • Save MP-C/ec5a500366b94db2447ebafc879ddb6f to your computer and use it in GitHub Desktop.
Save MP-C/ec5a500366b94db2447ebafc879ddb6f to your computer and use it in GitHub Desktop.
toTurnAroundWebImageFromConsole
/*Juste to make fun wiht a collegue when he leaves the pc's on*/
/*After F12 */
/*Copy-Paste in in console */
/*to turn the WebWindow around */
(function(){
document.documentElement.style.transitionDuration='30s';
document.documentElement.style.transistionTimingFunction="ease-in";
document.documentElement.style.transform="rotate(360deg)";
}());
/*Juste to make fun wiht a collegue when he leaves the pc's on*/
/*After F12 */
/*Copy-Paste in in console */
/*to edit text on Web */
javascript:document.body.contentEditable = true; void 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment