mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
Replace CPU-hogging anim with GIF (fixes #481)
This commit is contained in:
parent
43467e3393
commit
d753811045
2 changed files with 1 additions and 30 deletions
BIN
resources/assets/img/bars.gif
Normal file
BIN
resources/assets/img/bars.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 48 KiB |
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<div id="bars">
|
||||
<div class="bar" v-for="n in 5"/>
|
||||
<img src="/public/img/bars.gif" alt="Sound bars" height="13" width="auto">
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
@ -46,40 +46,11 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="sass">
|
||||
// Some fancy bars for an eye-candy effect.
|
||||
// Credits: http://codepen.io/johnheiner/pen/JdRybK and http://codepen.io/jackrugile/pres/CkAbG
|
||||
@keyframes sound {
|
||||
0% {
|
||||
opacity: .15;
|
||||
height: 1px;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
height: 13px;
|
||||
}
|
||||
}
|
||||
|
||||
#bars {
|
||||
width: 28px;
|
||||
height: 13px;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
backface-visibility: hidden;
|
||||
|
||||
.bar {
|
||||
background: #666;
|
||||
bottom: 1px;
|
||||
position: absolute;
|
||||
width: 3px;
|
||||
animation: sound 0ms -800ms linear infinite alternate;
|
||||
backface-visibility: hidden;
|
||||
will-change: opacity, height;
|
||||
}
|
||||
|
||||
.bar:nth-child(1) { left: 1px; background: #754fa0; animation-duration: 474ms; }
|
||||
.bar:nth-child(2) { left: 5px; background: #09b7bf; animation-duration: 433ms; }
|
||||
.bar:nth-child(3) { left: 9px; background: #90d36b; animation-duration: 407ms; }
|
||||
.bar:nth-child(4) { left: 13px; background: #ed1b72; animation-duration: 458ms; }
|
||||
.bar:nth-child(5) { left: 17px; background: #f2d40d; animation-duration: 400ms; }
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue