css实现小猫欢迎跳跃贺卡动画效果代码

代码语言:html

所属分类:动画

代码描述:css实现小猫欢迎跳跃贺卡动画效果代码

代码标签: 欢迎 跳跃 贺卡 动画 效果

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

<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
    /*\
|*| Core
\*/
@import url("https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap");
body {
  font-family: "Fredoka One", cursive;
  position: relative;
  overflow: hidden;
  height: 100vh;
  background: conic-gradient(from -90deg at 50% 50%, #eb5757 0deg, #f2994a 90deg, #219653 180deg, #2d9cdb 270deg, #eb5757 360deg);
  perspective: 100vmin;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: radial-gradient(50% 50% at 50% 50%, #eb5757 0%, rgba(235, 87, 87, 0.67) 26.56%, rgba(235, 87, 87, 0) 100%);
}


/*\
|*| Container
\*/
.container {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-animation: jump 1s ease-in-out alternate infinite;
          .........完整代码请登录后点击上方下载按钮下载查看

网友评论0