Skip to content

Instantly share code, notes, and snippets.

@ShahinAhmed7
Created March 9, 2018 06:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ShahinAhmed7/12b618f09898bd59025a2ef9589f087d to your computer and use it in GitHub Desktop.
Save ShahinAhmed7/12b618f09898bd59025a2ef9589f087d to your computer and use it in GitHub Desktop.
a.video-play-button img {
transition: 0.3s ease-in-out;
width: 70px;
height: 70px;
border-radius: 50%;
animation: pulse 2s linear infinite;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(255, 255, 255, .7), 0 0 0 0 rgba(255, 255, 255, .7);
}
40% {
box-shadow: 0 0 0 50px rgba(255, 255, 255, 0), 0 0 0 0 rgba(255, 255, 255, .7);
}
80% {
box-shadow: 0 0 0 50px rgba(255, 255, 255, 0), 0 0 0 30px rgba(255, 255, 255, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 30px rgba(255, 255, 255, 0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment