美术少女跟随鼠标绘画动画

代码语言:html

所属分类:视觉差异

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">

<style>
@import url("https://fonts.googleapis.com/css?family=Mali");
.ball {
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  -webkit-animation: implode 10s ease-in-out;
          animation: implode 10s ease-in-out;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes implode {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  5%, 30% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes implode {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  5%, 30% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
.frame, #wrap, html, body, .block-mobile {
  position: ab.........完整代码请登录后点击上方下载按钮下载查看

网友评论0