亚洲AV无码乱码在线观看性色,免费无码又爽又刺激高潮视频,用你的指尖扰乱我下一部动漫,人妻AV中文系列,人妻熟妇女的欲乱系列

css動(dòng)畫實(shí)現(xiàn)嗶哩嗶哩的幻燈張嘴效果

時(shí)間:2023-06-01 21:17:23 類型:HTML/CSS
字號(hào):    

張嘴 00_00_00-00_00_30~2.gif

看到嗶哩嗶哩的幻燈上有一個(gè)張嘴的效果很好玩,這里做一個(gè)玩一玩


html代碼:

<div class="center">
            <div class="eat-up">
            </div>
            <div class="eat-down">
            </div>
        </div>

css代碼:

.center{
    width: 100px;
    height:100px;
    margin: 100px auto;
}
.eat-up {
  background-color: green;
  width: 100px;
  height: 50px;
  border-radius: 50px 50px 0 0;
  animation: eat-haha-up 1s infinite;
  transform-origin: center bottom;
}

.eat-down{
  background-color: green;
  width: 100px;
  height: 50px;
  border-radius: 0 0 50px 50px;
  animation: eat-haha-down 1s infinite;
  transform-origin: center top;
}

@keyframes eat-haha-up {
  0% {transform: rotate(0)
  }

  25% {transform: rotate(-45deg)
  }

  50% {transform: rotate(0)
  }

  75% {transform: rotate(-45deg)
  }

  to {transform: rotate(0)
  }
}

@keyframes eat-haha-down {
  0% {transform: rotate(0)
  }

  25% {transform: rotate(45deg)
  }

  50% {transform: rotate(0)
  }

  75% {transform: rotate(45deg)
  }

  to {transform: rotate(0)
  }
}


<