vue中美化滾動條


之前的滾動條樣式

 

放在App.vue 文件下可全局

<style>
::-webkit-scrollbar-track
{
background: rgba(0,0,0,.1);
border-radius: 0;
}

::-webkit-scrollbar
{
-webkit-appearance: none;
width: 10px;
height: 10px;
}

::-webkit-scrollbar-thumb
{
cursor: pointer;
border-radius: 5px;
background: rgba(0,0,0,.25);
transition: color .2s ease;
}
</style>

 之后的滾動條樣式

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM