js如何实现网页换肤

发布时间:2022-07-02 09:36:50 作者:iii
来源:亿速云 阅读:137

这篇“js如何实现网页换肤”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“js如何实现网页换肤”文章吧。

效果:

js如何实现网页换肤

代码:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <style type="text/css">
            *{
                margin: 0px;
                padding: 0px;
            }
            body{
                height: 100%;
                width: 100%;
                
            }
            #main{
                height: 720px;
                width: 100%;
                background-color: pink;
            }
            button{
                height: 15px;
                width: 15px;
                border: 1px solid #fff;
                margin: 10px 10px;
                
            }
            #red{
                background-color: red;
            }
            #green{
                background-color: green;
            }
            #blue{
                background-color: blue;
            }
            
        </style>
    </head>
    <body>
        <div id="main">
            <button type="button" id="red" onclick="red()"></button>
            <button type="button" id="green" onclick="green()"></button>
            <button type="button" id="blue" onclick="blue()"></button>
        </div>
        
        <script type="text/javascript">
            var x=document.getElementById('main');
            function red(){
                x.style.backgroundColor='red';
                
                document.getElementById('red').style.border="3px solid white";
                document.getElementById('green').style.border="1px solid white";
                document.getElementById('blue').style.border="1px solid white";
                
            }
            function green(){
                x.style.backgroundColor='green';
                document.getElementById('green').style.border="3px solid white";
                document.getElementById('red').style.border="1px solid white";
                document.getElementById('blue').style.border="1px solid white";
            }
            function blue(){
                x.style.backgroundColor='blue';
                document.getElementById('blue').style.border="3px solid white";
                document.getElementById('red').style.border="1px solid white";
                document.getElementById('green').style.border="1px solid white";
            }
        </script>
    </body>
</html>

以上就是关于“js如何实现网页换肤”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注亿速云行业资讯频道。

推荐阅读:
  1. 最简单的网页换肤(jQuery)
  2. select学习小demo--实现网页换肤

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

js

上一篇:vue2.x版本中computed和watch怎么使用

下一篇:微信小程序缓存过期时间如何设置

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》