simple vibrating effect using css

This is one of the simple vibrating effect using css. This effect is very easy to create using css3 and also this is very helpful the developer because developer can use this vibration effect in social media icons and menus etc.. This is one of the hover effect can use anywhere in the website.


simple-vibrating effect


Simple Vibrating effect using css:


<!DOCTYPE html>
 <html class="no-js"> 
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>vibrating effect using css3 </title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">


<style type="text/css">
* {
margin: 0; 
padding: 0;
border:0;
}


.san div:hover img{
    margin-left: 0px;
    cursor: pointer;
    animation:vibrate 0.01s linear 0s infinite ;
    -moz-animation: vibrate 0.01s linear 0s infinite ; /* Firefox */
    -webkit-animation: vibrate 0.01s linear 0s infinite ; /* Safari and Chrome */
    -o-animation: vibrate 0.01s linear 0s infinite ; /* Opera */
}

@keyframes vibrate
{
0%   {margin-left: 0px;}
25%  {margin-left: -6px;}
50%  {margin-left: 0px;}
75%  {margin-left: 6px;}
100% {margin-left: 0px;}

}

@-moz-keyframes vibrate /* Firefox */
{
0%   {margin-left: 0px;}
25%  {margin-left: -6px;}
50%  {margin-left: 0px;}
75%  {margin-left: 6px;}
100% {margin-left: 0px;}
}

@-webkit-keyframes vibrate /* Safari and Chrome */
{
0%   {margin-left: 0px;}
25%  {margin-left: -6px;}
50%  {margin-left: 0px;}
75%  {margin-left: 6px;}
100% {margin-left: 0px;}
}

@-o-keyframes vibrate /* Opera */
{
0%   {margin-left: 0px;}
25%  {margin-left: -6px;}
50%  {margin-left: 0px;}
75%  {margin-left: 6px;}
100% {margin-left: 0px;}
}

</style>
</head>



<body>
<center>
<div class="san">
<div>
<img src="img/vibrating effect.png">
</div>
</div>
</center>
</body>
</html>


Post a Comment

0 Comments