vue-scroll-up
Version:
A Vue.js component to top of the page
1 lines • 680 B
CSS
.vue-scroll-up{z-index:99;height:55px;width:55px;position:fixed;border:rgba(0,0,0,.658);background-color:rgba(0,0,0,.658);color:#fff;border-radius:100px;right:10px;bottom:100px;cursor:pointer;outline:0}.vue-scroll-up:after{content:"";display:block;width:10px;height:25px;border:2px solid #fff;border-radius:10px;margin:0 auto}.vue-scroll-up:before{content:"";display:block;width:0;height:10px;border:1px solid #fff;border-radius:10px;left:49%;position:absolute;animation:2s top infinite}@keyframes top{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@media screen and (max-width:450px){.vue-scroll-up{bottom:10px;transform:translateX(5px) scale(.7)}}