❶ js 设置css样式
javascript改变CSS样式分为局部和全局,分别如下:一、局部改变样式有三种方法:直接改变样式、改变className和改变cssText改变className: document.getElementById('obj').className="…"改变cssText:document.getElementById('obj').style.cssText="width:20px; border:solid 1px #f00;";改变直接样式: document.getElementById('obj').style.backgroundColor="#003366″二、全局改变样式通过改变外链样式的的href的值实现网页样式的实时切换,也就是"改变模板风格"。首先需要赋予需要改变的目标一个id,如代码如下:link rel="stylesheet" type="text/css" id="css" href="firefox.css" /调用时很简单,如代码如下:span onclick="javascript:document.getElementById('css').href='ie.css'"点我改变样式/span
❷ 求一个CSS代码 可以改字体颜色 背景图片 把标题栏弄透明的 谢谢了~
你指的是网页换皮肤吧。
从网上下载一个jquery 库 jquery-1.9.0.min.js 不一定是1.9的,可以是1.2至1.9都行
新建两个不同名称文件夹,存放两个样式表和图片。如:color1 和color2
两个样式表的样式名要完全一样,大部分样式一模一样,图片名称和存放地址也一样,不一样的是图片不一样,字体颜色样式不一样。
两个样式存放地址分别:color1/css/index.css和color2/css/index.css
index.html 和color1、color2 为同一目录的文件
看下面的代码你应该能明白。
样式文件color1
.color_style{width:300px;height:30px;line-height:30px;font-size:20px;font-weight:bold;background:url(color1/image/img.gif)no-repeat;color:#fff;background-color:#999;}
样式文件color2
.color_style{width:300px;height:30px;line-height:30px;font-size:20px;font-weight:bold;background:url(color2/image/img.gif)no-repeat;color:#ff00ff;background-color:#9C3;}
<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
<title>换肤</title>
<linkhref="color1/css/index.css"rel="stylesheet"type="text/css"id="color_style"/>
<scriptsrc="js/jquery-1.9.0.min.js"type="text/javascript"></script>
<scripttype="text/javascript">
$(function(){
functionchange_color(){
varhref1='color1/css/index.css';
varhref2='color2/css/index.css';
varlink_url=$("#color_style").attr("href");
if(link_url==href1){
$("#color_style").attr("href",href2);
}else{
$("#color_style").attr("href",href1);
}
}
$("#change").bind("click",change_color);
});
</script>
</head>
<body>
<divclass="color_style"><spanstyle="float:left;">这是效果标题</span><spanstyle="float:right;cursor:pointer;"id="change">点击换肤</span></div>
</body>
</html>
❸ css中如何将不同的字设置成不同的颜色
css中的color属性可以给字体添加颜色,支持颜色描述如red,颜色rgb与rgba,对你想添加颜色dom元素设置color属性即可,如果想动态同时给多个元素添加不同颜色,建议使用js采用随机数或循环设置多个颜色
❹ js或css如何实现鼠标选中文字改变文字的背景色,兼容ie(6,7,8), 火狐 ,谷歌等各大浏览器
您好!很高兴为您答疑!
<style>.aa{text-align:center;}a,a:hover{text-decoration:none; color:#fff;}.aa a{display:block; width:150px; height:50px; line-height:50px; background:#990;}.aa a:hover{background:#000;}</style><div class="aa"><a href="#">鼠标移上去变色</a></div>
您可以在火狐社区了解更多内容。希望我的回答对您有所帮助,如有疑问,欢迎继续在本平台咨询。