给Emlog博客系统添加图片抖动的JS代码

1.首先我们找到自己的模板,EM路径为

EMLOG模板位置在:/content/templates/你的模板名/

2.找到我们模板的主要css文件,放到css的最后面即可,一般为style.css

但也有不一样的,但是只要放到主要的css里面就行了

img:hover {
-webkit-animation:sucaijiayuan 1s .1s ease both;
-moz-animation:tada 1s .1s ease both;
}
@-webkit-keyframes sucaijiayuan {
0% {
-webkit-transform:scale(1)
}
10%, 20% {
-webkit-transform:scale(0.8) rotate(-2deg)
}
30%, 50%, 70%, 90% {
-webkit-transform:scale(1.1) rotate(2deg)
}
40%, 60%, 80% {
-webkit-transform:scale(1.1) rotate(-2deg)
}
100% {
-webkit-transform:scale(1) rotate(0)
}
THE END