亚洲AV日韩AV无码,久碰人妻人妻人妻人妻人掠,无码中字出轨中文人妻中文中,国产精品无套内射迪丽热巴,久久大香萑太香蕉AV黄软件,日本欧美国产综合,人妻少妇AV无码一区二区,国产精品久久精品国产,亚欧免费无码aⅴ在线观看,黑人4o公分全部进入

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

時(shí)間:2023-06-01 21:17:23 類(lèi)型: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)
  }
}


<