修改滾動條樣式(iview)


一開始是這樣shi兒的

 

 修改代碼之后

 

 代碼:

// 修改滾動條樣式
/deep/::-webkit-scrollbar {
  width: 6px; //豎軸寬度
  height: 6px; //橫軸寬度
  background-color: rgba(99, 110, 246, 0.5);
}

/* 滾動槽 */
/deep/::-webkit-scrollbar-track {
  border-radius: 10px;
}

/deep/::-webkit-scrollbar-thumb {
  background-color: #636ef6;
}
 

當然具體的你可以根據需求自己調

ps:隱藏滾動條

// 隱藏滾動條
/deep/::-webkit-scrollbar {
  width: 0 !important;
}
/deep/::-webkit-scrollbar {
  width: 0 !important;
  height: 0;
}

 

 


免責聲明!

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



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