Skip to content

Instantly share code, notes, and snippets.

@StMotorSpark
Created April 9, 2020 13:41
Show Gist options
  • Select an option

  • Save StMotorSpark/e51766f56918769890663c6af2886834 to your computer and use it in GitHub Desktop.

Select an option

Save StMotorSpark/e51766f56918769890663c6af2886834 to your computer and use it in GitHub Desktop.

Revisions

  1. StMotorSpark created this gist Apr 9, 2020.
    12 changes: 12 additions & 0 deletions animateStyle3.css
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,12 @@
    @keyframes animateFadeIn {
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
    }
    }

    .fadeIn {
    animation: animateFadeIn 0.8s;
    }