Greasy Fork is available in English.

Fade In and Out

Adds fade out effect when the page is unloaded

< Valutazione su Fade In and Out

Recensione: Bene - lo script funziona

§
Pubblicato: 31/03/2014
Modificato: 31/03/2014

As mentioned in other threads, great script!

I cannot rate it unless I create a new thread so ... well ... here I am.
Love it!

LouCypherAutore
§
Pubblicato: 01/04/2014
Modificato: 03/04/2014

Thanks @mikedl

It's originally from this thread
http://forum.userstyles.org/discussion/31373/fade-in-effect-on-web-pages/p1
You had cameo appearance there :D

You can modify the script and change it, for example, like this

GM_addStyle("@keyframes slideInRight {\
  from {\
    transform: translateX(2000px);\
  }\
  to {\
    transform: translateX(0);\
  }\
}\
@keyframes slideOutLeft {\
  from {\
    transform: translateX(0);\
  }\
  to {\
    transform: translateX(-2000px);\
  }\
}\
html {\
  animation-name: slideInRight;\
  animation-duration: 1s;\
}\
.kthxbye {\
  animation-name: slideOutLeft;\
  animation-fill-mode: forwards;\
}")

addEventListener("beforeunload", function() {
  document.documentElement.classList.add("kthxbye");
})

More cool CSS animations
http://daneden.github.io/animate.css/

§
Pubblicato: 02/04/2014

LouCypher, LOL! That's way too cool! Nice!

Pubblica risposta

Accedi per pubblicare una risposta.