<div class="icon">
<h1>制作一些</h1>
<h1>很酷</h1>
<h1>的东西</h1>
</div>
HTML
格式化
支持Emmet,输入 p 后按 Tab键试试吧!
<head> ... </head>
<body>
</body>
$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);
}
}
预览
控制台