头像持续旋转
打开\themes\next\source\css\_common\components\sidebar\sidebar-author.styl
首先定义动画:
1 | @keyframes autoRotate { |
然后设置动画属性:
1 | animation-name: 动画的名称 |
最后使用动画:
1 | -webkit-animation-name: autoRotate; /*动画名称*/ |
另外,添加鼠标经过时停止旋转效果:
1 | .site-author-image:hover { |
头像触碰旋转
1 | .site-author-image:hover { |