1
0
Fork 0
forked from 0x2620/oxjs

add progress bar demo

This commit is contained in:
rolux 2011-09-01 23:38:57 +02:00
commit 16ef28d260
8 changed files with 148 additions and 17 deletions

View file

@ -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 {