点击查看html编辑器说明文档

制作一些很酷的东西edit icon

|
|
Fork(复制)
|
|
提交反馈
嵌入
设置
下载
HTML
格式化
支持Emmet,输入 p 后按 Tab键试试吧!
<head> ...
展开
</head>
<body>
            
            <div class="icon">
  <h1>制作一些</h1>
  <h1>很酷</h1>
  <h1>的东西</h1>
</div>
        
</body>
SCSS
格式化
            
            $background-color: #E5E0D4; // 背景色
$green: #A2E33F; // 绿色
$blue: #21BFE9; // 蓝色
$orange: #E9743B; // 橙色
$pink: #E992BD; // 粉色

html {
  display: grid;
  min-height: 100%;
}

body {
  display: grid;
  background-color: $background-color;
}

.icon {
  margin: auto;
  text-align: center;
}

h1 {
  font-size: 60px;
  line-height: 28px;
  color: $pink;
  font-weight: bold;
  text-shadow: 4px 4px 0px $orange;
}

h1:hover {
  color: $blue;
  text-shadow: 4px 4px 0px $green;
    animation: wiggle 1s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes wiggle {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, -4px, 4px);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
        
JS
格式化
            
            
        
预览
控制台