1 Star 0 Fork 42

starsoft35/admin-pages-ui

forked from ruyangit/admin-pages-ui 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 1.81 KB
一键复制 编辑 原始数据 按行查看 历史
ruyangit 提交于 2018-05-31 16:22 . UI更新
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>skye-demo</title>
<style>
html,
body {
/* background-color: #1d1f20; */
margin: 0;
height: 100%;
}
.box {
height: 80px;
width: 80px;
position: relative;
top: calc(50% - 80px);
left: calc(50% - 50px);
perspective: 1000px;
}
.thing {
height: 40px;
width: 40px;
background-color: #E87722;
position: absolute;
box-sizing: border-box;
top: 0;
left: 0;
}
.thing:nth-of-type(1) {
animation: bounce 0.5s ease-in-out infinite alternate, move 4s -1s infinite;
}
.thing:nth-of-type(2) {
animation: bounce 0.5s ease-in-out infinite alternate, move 4s -2s infinite;
}
.thing:nth-of-type(3) {
animation: bounce 0.5s ease-in-out infinite alternate, move 4s -3s infinite;
}
.thing:nth-of-type(4) {
animation: bounce 0.5s ease-in-out infinite alternate, move 4s -4s infinite;
}
@keyframes bounce {
from {
transform: scale(1);
}
to {
transform: scale(0.8);
}
}
@keyframes move {
0% {
top: 0;
left: 0;
background-color: #E87722;
}
25% {
top: 0;
left: 50%;
background-color: #A4D65E;
}
50% {
top: 50%;
left: 50%;
background-color: #69B3E7;
}
75% {
top: 50%;
left: 0;
background-color: #FFC845;
}
}
</style>
</head>
<body>
<div id="app" class="box">
<div class="thing"></div>
<div class="thing"></div>
<div class="thing"></div>
<div class="thing"></div>
</div>
<!-- built files will be auto injected -->
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/starsoft35/my-vuejs-skye-cli.git
git@gitee.com:starsoft35/my-vuejs-skye-cli.git
starsoft35
my-vuejs-skye-cli
admin-pages-ui
master

搜索帮助