Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Funky
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match *://*/*
  8. // @grant GM_addStyle
  9. // @require http://code.jquery.com/jquery-3.3.1.min.js
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. GM_addStyle('.funky { position: fixed; top: 0; left: 0; height: 100%; width: 100%; animation: funkyDelay 3.3s infinite ease-in-out; z-index: 100000; pointer-events: none; }');
  16.  
  17. GM_addStyle("@keyframes funkyDelay { " +
  18. "0%, 100% { " +
  19. " backdrop-filter: invert(100%) blur(3px) sepia(0%) brightness(100%); " +
  20. "} 10% { " +
  21. " backdrop-filter: invert(100%) blur(3px) sepia(0%) brightness(70%); " +
  22. "} 50% {"+
  23. " backdrop-filter: invert(0%) blur(0px) sepia(100%) brightness(100%); " +
  24. "} 75% {"+
  25. " backdrop-filter: invert(0%) blur(0px) sepia(0%) brightness(400%); " +
  26. "} 90% {"+
  27. " backdrop-filter: brightness(500%); " +
  28. "}}");
  29.  
  30. jQuery('body').append('<div class="funky"></div>"');
  31. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement