您当前的位置: 首页 > 

@大迁世界

暂无认证

  • 1浏览

    0关注

    739博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

170.Neumorphism 的新风格特效

@大迁世界 发布时间:2021-06-26 22:06:17 ,浏览量:1

效果 (源码网盘地址在最后)

源码

index.html

``

Neumorphism 的新风格特效
` ``

css

*{
  margin:0;
  padding:0;
}
.container {
  background: #f0f0f0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}
.box {
  border-radius: 20px;
  width: 60px;
  height: 60px;
  background: #f0f0f0;
  box-shadow:  0 0 0 #cccccc,
               0 0 0 #ffffff,
                10px 10px 10px #cccccc inset,
                -10px -10px 10px #ffffff inset;
  animation: anime 3s cubic-bezier(0.16, 1, 0.3, 1) 1s infinite alternate;
  /* animation-fill-mode: forwards; */
}

@keyframes anime {
  0% {
    width: 60px;
    height: 60px;
    b
关注
打赏
1664287990
查看更多评论
立即登录/注册

微信扫码登录

0.0568s