HTML5 换肤的三种方案
【摘要】
换肤的三种方案
通过id获取link元素,修改href属性使用css自定义变量来设置颜色rel=”alternate stylesheet”并且title属性必须存在(常规style不应该设置title...
换肤的三种方案
- 通过id获取link元素,修改href属性
- 使用css自定义变量来设置颜色
- rel=”alternate stylesheet”并且title属性必须存在(常规style不应该设置title),此事将作为备用样式表而在默认情况下disabled。可在js中修改disabled的值。document.querySelectorAll(“link[rel^=alternate]”)
测试代码
- index.html
<!doctype html>
<html>
<head>
<meta charset="utf8">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="" id="customStyle"/>
<link rel="alternate stylesheet" title="customStyle" href="css/red.css"/>
<link rel="alternate stylesheet" title="customStyle" href="css/green.css"/>
<link rel="alternate stylesheet" title="customStyle" href="css/blue.css"/>
<script>
console.log(navigator.userAgent);
var styleHrefArr = ["", "red.css", "green.css", "blue.css"];
var styleColorArr = ["white", "red", "green", "blue"];
var styleIndex = 0;
var way = 0;
function changeStyle(){
styleIndex = (styleIndex + 1) % styleColorArr.length;
switch(way) {
case 0:
var style = document.getElementById("customStyle");
style.setAttribute("href", "css/" + styleHrefArr[styleIndex]);
break;
case 1:
var style = document.getElementById("style");
document.documentElement.style.setProperty("--color", styleColorArr[styleIndex]);
break;
case 2:
var elems = document.querySelectorAll("link[rel^=alternate]");
elems.forEach(function(item, index) {
item.disabled = !((styleIndex-1) == index);
});
break;
}
}
</script>
</head>
<body>
<button onclick="changeStyle()"> hello</button>
</body>
</html>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- main.css
:root {
--color: black;
}
body {
background-color: var(--color);
}
- 1
- 2
- 3
- 4
- 5
- 6
注意点
以上方法切换主题,由于优先级问题,main.css不能是”行内”或”内嵌”的,只能是”外联”的。且main.css必须最先声明
文章来源: blog.csdn.net,作者:福州-司马懿,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/chy555chy/article/details/80082530
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)