标签栏选中颜色

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta
http-equiv="Content-Type" content="text/html; charset=utf-8"
/>
<title>无标题文档</title>
<style
type="text/css">
a.link,a.visited{color:#foo;}

a.hover{color:#ddd300;}
</style>
</head>

<body>
<li class="blue_btn l"><a href="#"
class="al" id="btn_nav0"
onClick="bianse(this.id)">翻译</a></li>
<li
class="blue_btn l"><a href="#" class="al" id="btn_nav1"
onClick="bianse(this.id)">原声朗读</a></li>
<li
class="blue_btn l"><a href="#" class="al" id="btn_nav2"
onClick="bianse(this.id)">背诵对话</a></li>

<script type="text/javascript"
src="http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.9.0.min.js"></script>
<script
type="text/javascript">
function
bianse(id){
$("class名字").css(‘color‘,‘默认字体颜色‘)
$("#"+id+"").css(‘color‘,‘选中颜色‘);
}

</script>
</body>
</html>

时间: 2024-10-27 06:56:03

标签栏选中颜色的相关文章

修改tabbarcontroller选中图片及选中颜色

1.修改选中图片: UITabBarItem* item = [self.tabBarController.tabBar.items objectAtIndex:1];   //从0开始 item.selectedImage = [UIImage imageNamed:@"ItemSelProfile"]; 2.修改选中颜色: [self.tabBarController.tabBar setSelectedImageTintColor:[UIColor redColor]];

tableview 选中一行后,不显示选中颜色。。。。的N种解决办法

tableview 选中一行后,不显示选中颜色,不要将tableview的allowsSelection设置成NO,那样的话可能导致tableview不能响应点击动 作.合理的解决方法是: 直接在创建cell的时候: cell.selectionStyle = UITableViewCellSelectionStyleNone; 或者你是通过XIB创建的cell那么写在xib的nib里边也是可以的:(原理相同) - (void)awakeFromNib {     //取消cell 选中风格  

UITableView取消选中颜色、常用操作

使用空白view取代cell - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ //取消选中颜色 UIView *backView = [[UIView alloc] initWithFrame:cell.frame]; cell.selectedBackgroundView = backView; cell.selectedBackgro

iOS设置UITableViewCell的背景色透明和选中颜色的方法

1.设置UITableViewCell的背景色透明方法: cell.backgroundColor=[UIColor clearColor]; 或者设置颜色透明度为0: cell.backgroundColor = [UIColor colorWithWhite:0.0f alpha:0.0f]; 2.设置UITableViewCell的选中颜色的方法:     UIView *view = [[UIView alloc]init];     view.backgroundColor=[UICo

tabBar中tabBarItem选中颜色自定义设置

1.在storyBoard中,选中tabBarController,设置tabBar如图 2. 直接代码设置 tabBarController.tabBar.selectedImageTintColor = [UIColor orangeColor]; 修改tabBarItem的字体颜色:[tabBarItem setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor redColor],NSForegr

CSS3:高亮文本选中颜色

关键字:  ::selection 为了个性化网站主题,可以对文本高亮背景颜色进行设置. :selection { background: #ffb7b7; /* WebKit/Blink Browsers */ } ::-moz-selection { background: #ffb7b7; /* Gecko Browsers */ } 一个简单的例子: <!DOCTYPE html> <html> <head> <meta charset="UTF

设置cell选中颜色以及表格默认选中某行

1.在加载cell的地方(即 (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath里面)加上下面几句代码 [cell setBackgroundColor:CLEARCOLOR]; cell.selectedBackgroundView = [[UIView alloc] initWithFrame:cell.frame]; cell.selecte

::selection伪元素改变文本选中颜色

在看张鑫旭大神的文章,刚刚发现了这个,感觉应该后面有用,先存起来. 效果如下: 代码如下: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> p::selection { background: #d3d3d3; color: #fff; } p::

CSS改变默认文本选中的颜色的方法

请选择本页面文本看看:http://hovertree.com/h/bjaf/38hq6y9d.htm 一般情况下在网页里的文本我们用鼠标选中的时候都是蓝色的,这个默认颜色也是可以更改的,本文我们学习如何使用CSS3实现改变默认文本选中的颜色.以我的系统举例(xp 默认主题),浏览器上页面文字选中后默认的背景色是一种蓝色, 不同浏览器的颜色有些许差异,但大致相同,文字颜色也近乎白色. 一.关于浏览器文字选中颜色:在CSS3的爸爸 妈妈还没有相亲认识的时候,要改变页面上文字选中后的背景色以及文字颜