设置头像 发表于 2017-09-07 | 分类于 hexo ####把头像变成圆形,并且鼠标停留在上面发生旋转效果 修改themes\next\source\css_common\components\sidebar\sidebar-author.styl: 代码块1234567891011121314151617181920212223242526 .site-author-image { display: block; margin: 0 auto; padding: $site-author-image-padding; max-width: $site-author-image-width; height: $site-author-image-height; border: site-author-image-border-color; /* start*/ border-radius: 50% webkit-transition: 1.4s all; moz-transition: 1.4s all; ms-transition: 1.4s all; transition: 1.4s all; /* end */}/* start */.site-author-image:hover { background-color: #55DAE1; webkit-transform: rotate(360deg) scale(1.1); moz-transform: rotate(360deg) scale(1.1); ms-transform: rotate(360deg) scale(1.1); transform: rotate(360deg) scale(1.1);}/* end */