forked from 0x2620/oxjs
add progress bar demo
This commit is contained in:
parent
d160699e00
commit
16ef28d260
8 changed files with 148 additions and 17 deletions
|
|
@ -70,13 +70,29 @@ Bars
|
|||
}
|
||||
|
||||
.OxProgressbar {
|
||||
height: 16px;
|
||||
height: 14px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-radius: 8px;
|
||||
}
|
||||
.OxProgressbar > div {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-radius: 8px;
|
||||
margin: -1px;
|
||||
}
|
||||
.OxProgressbar > div.OxAnimate {
|
||||
-webkit-animation: move 1s linear infinite;
|
||||
}
|
||||
@-webkit-keyframes move {
|
||||
0% {
|
||||
background-position: 0 0;
|
||||
}
|
||||
100% {
|
||||
background-position: -32px 0;
|
||||
}
|
||||
}
|
||||
|
||||
.OxResizebar {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue