答案 0 :(得分:0)
也许我没有抓住问题的全部含义(以及'滑块'的含义),但最容易想到的答案是使用CSS。
header{background:none;}
或
header {opacity:0.5;} /*any number between 0 and 1*/
如果你想改变背景的不透明度,可以这样:
header {background: rgba(255, 255, 255, 0.9);} /*where 0.9 is the opacity and the rest is the color in RGB*/
太容易了?