Skip to content

Instantly share code, notes, and snippets.

@jesseincn
Created January 29, 2015 06:08
Show Gist options
  • Save jesseincn/9af7c85514a698f21feb to your computer and use it in GitHub Desktop.
Save jesseincn/9af7c85514a698f21feb to your computer and use it in GitHub Desktop.
CSS3晃动动画
.tip_right{
position: fixed;
top: 40%;
right: 0;
z-index: 1;
width: 25px;
-webkit-animation:right_tip 1.5s infinite;
}
@-webkit-keyframes right_tip
{
0%{opacity:1; right:10px;}
50%{opacity:0.5; right:0px;}
100%{opacity:0.1; right:10px;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment