如何实现网页换肤效果
程序员文章站
2022-03-17 12:05:08
...
网页换肤效果
简单的换肤
蓝 红 绿
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script> function changeColor(str){ var body = document.getElementById("b"); body.style.backgroundColor = str; } </script> </head> <body id="b" > <button onclick="changeColor('blue')">蓝色</button> <button onclick="changeColor('red')">红色</button> <button onclick="changeColor('green')">绿色</button> </body></html>
以上就是如何实现网页换肤效果 的详细内容,更多请关注其它相关文章!
上一篇: php下载图片到本地服务器实例分享
下一篇: CSS和JS的加载和执行详解