Dev: Console

This commit is contained in:
surunzi
2016-03-10 00:25:15 +08:00
parent 38662fe6aa
commit 3ccc538a49
25 changed files with 1511 additions and 47 deletions

View File

@@ -0,0 +1,51 @@
#eruda {
.dev-tools {
position: absolute;
width: 100%;
height: 100%;
background: #fff;
z-index: 500;
display: none;
&.show {
display: block;
animation: show-menu .3s linear both;
}
&.hide {
display: block;
animation: hide-menu .3s linear both;
}
.tools {
height: calc(100% - 50px);
width: 100%;
position: relative;
overflow: scroll;
.tool {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
}
}
}
@keyframes show-menu {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes hide-menu {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}