Sign in

梁美英 / programming · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • programming
  • src
  • scss
  • _animation.scss
  • 发版 fix bug
    42ad2d50
    ykxie authored
    2016-12-12 15:05:27 +0800  
    Browse Code »
_animation.scss 230 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
.twinkle:before{
    animation: twinkle 1s infinite;
    -webkit-animation: twinkle 1s infinite;
}
@-webkit-keyframes twinkle{
    0%{
        opacity:0;
    }
    50%{
        opacity:1;
    }
    100%{
        opacity:0;
    }
}