实例首页
自学教程
IT工具箱
源代码
下载代码
上下布局
点击运行 >
<!DOCTYPE html> <html> <head> <title>CSS opacity 不透明更改 实例 - 自学教程(runoops.com)</title> <script> function ChangeOpacity(x) { // Return the text of the selected option var opacity = x.options[x.selectedIndex].text; var el = document.getElementById("p1"); if (el.style.opacity !== undefined) { el.style.opacity = opacity; } else { alert("Your browser doesn't support this example!"); } } </script> </head> <body> <p id="p1">Select a value from the list below, to change this element's opacity!</p> <select onchange="ChangeOpacity(this);" size="5"> <option />0 <option />0.2 <option />0.5 <option />0.8 <option selected="selected" />1 </select> </body> </html>
运行结果: