Site Notice
hello, world
Progress
From Project-EPB Commons
<html> <button onclick="$('.progress').addClass('done')">完成</button> <button onclick="$('.progress').removeClass('done')">重置</button> <div class="progress">
<div class="bar"></div>
</div>
<script>
</script> <style>
.progress { margin: auto 10%; height: 1em; border: 1px solid #c5c5c5; padding: 2px; overflow: hidden; }
.progress .bar { height: 100%; background: #a3a2a2; animation: progress 2s linear infinite; }
.progress.done .bar { animation: none; width: 100%; margin: auto 0; background: green; }
@keyframes progress {
from { margin-left: -30%; margin-right: 100%; } to { margin-left: 100%; margin-right: -30%; }
} </style>
</html>