html就是生活

代码语言:html

所属分类:动画

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

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

    <title> Game of Life / HTML is Life</title>
<link type="text/css" rel="stylesheet" href="http://repo.bfw.wiki/bfwrepo/css/tailwind.min.css">

    <style>
        body {
            font-family: 'Work Sans', sans-serif;;
        }
        .letter {
            font-size: 50vh;
            line-height: 1;
            padding: 5vh 10vh 7vh;
            color: #fff;
            font-weight: bold;
            box-shadow: 4vh 4vh 0 rgba(255,255,255,.2) inset, -4vh -4vh 0 rgba(0,0,0,.07) inset, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            text-shadow: 2vh 2vh 0 rgba(0,0,0,.3);
            animation-name: fun;
            animation-duration: 2.5s;
            animation-iteration-count: infinite;
            position: relative;
        }
        .pink {
            background-color: #d3017e;
        }
        .blue {
            background-color: #029bd4;
            animation-delay: .15s;
 .........完整代码请登录后点击上方下载按钮下载查看

网友评论0