edit mode poc

by bakhshi

HTML

<div>
</div>

CSS

div{
    width:50px;
    height:50px;
    background-color:blue;
    -webkit-animation-duration:1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name:vibrate;
    -webkit-animation-direction:alternate;
}

@keyframes vibrate{
    from{
        transform: rotate(10deg);
        -webkit-transform: rotate(10deg);
    }
    to{
        transform:rotate(-10deg);
        -webkit-transform:rotate(-10deg);
    }
}
@-webkit-keyframes vibrate{
    from{
        -webkit-transform: rotate(10deg);
    }
    
    to{
        -webkit-transform:rotate(-10deg);
    }
}