Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

掘金头像旋转动画 #3

Open
xiaotiandada opened this issue Jan 19, 2021 · 0 comments
Open

掘金头像旋转动画 #3

xiaotiandada opened this issue Jan 19, 2021 · 0 comments

Comments

@xiaotiandada
Copy link
Owner

2018-06-04 00:19:54

掘金头像旋转动画


参考文章或者地址

文章

掘金头像地址

模仿地址

代码实现

# 结构
<div class="avatar"></div>
# 样式
.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  background-image: url(https://avatars2.githubusercontent.com/u/24250627?s=460&v=4);
  background-size: cover;
}

.avatar:hover {
  -webkit-transform: rotate(666turn);
  transform: rotate(666turn);
  transition-delay: 1s;
  transition-property: all;
  transition-duration: 59s;
  transition-timing-function: cubic-bezier(.34, 0, .84, 1)
}

资料参考

turn

转、圈(Turns)。一个圆共1圈

90deg = 100grad = 0.25turn ≈ 1.570796326794897rad

资料有兼容说明

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant