//设置背景图片 [self.navigationController.navigationBar setBackgroundImage:imag forBarMetrics:UIBarMetricsDefault]; //button 定义你要的背景 文字 或 事件 UIBarButtonItem *leftBarButton = [[UIBarButtonItem alloc] initWithCustomView:button]; self.navigationItem.leftBarBu…
width:100%; background: url('../images/res.jpg') no-repeat 0 0px; background-attachment:fixed; background-size:100% 100%; height:auto; position: relative;…
1.会冒泡到兄弟元素么? $(function(){ $("#a").click(function(){alert("a")}) $("#b").click(function(){alert("b")}) $("#c1").click(function(){alert("c1")}) $("#c2").click(function(){alert("c2&q…
1.会冒泡到兄弟元素么? $(function(){ $("#a").click(function(){alert("a")}) $("#b").click(function(){alert("b")}) $("#c1").click(function(){alert("c1")}) $("#c2").click(function(){alert("c2&q…
如果让你实现下图的样式(图片里面插入文字),你会怎么做呢? 我总结了2种方式 ①:用 img src属性直接引入图片 + 定位 ②:用背景图且不使用定位 第一种: HTML <div class="download-explain"> <img class="download-explain-img" src="../../assets/img/download-bg.png"/> <span class="…
我都好久没更新了! 遇到一个效果,之前没有考虑清楚,设置了固定高度,到了后边,产品要加长,我就觉得设计得从新弄张长点的背景图!这不多余么? 其实分析原图还是可以再切分,再细化到不用改设计图,让我们前端页面各种适应,做到重复利用. 于是就有了这个问题和如下的一连串问题. .最外层父元素{height:auto;background:url(../images/hot_c_bg_g.png) repeat-y center top  #2807b3;} 一定是y轴重复 本来想用css3的backgr…
在UIButton的selected设为TRUE后.须要在按钮高亮时,显示自己定义的背景图. 经研究hightLighted和selected这两个状态是能够重叠的,就是button能够同一时候处于selectec和highlighted两个状态下. 从UIControlState的定义也能够看出: typedef NS_OPTIONS(NSUInteger, UIControlState) {     UIControlStateNormal       = 0,     UIControlS…
css31==>颜色的6种表示的方法有6种表示颜色的方法 关键字 rgb rgba(css3) 16进制 hsl hsla hsla h=>是色相,值为360, s=>饱和度,0%--100%: l-->亮度(0%--100%): a-->透明度(0 表示完全透明,1表示完全不透明) 2==>透明度 opacity一个元素的 opacity属性会完全的应用在这个元素的本身和它的子孙上, opacity的值在0--1:0表示完全的透明(看不见) 兼容所有的浏览 img{f…
效果图如下: <body> <div class="nav"> <div class="row"> <div class="col1"> <a href="#"> <em>酒店</em> <i></i> </a> </div> <div class="col2">…
1. 事件穿透属性:pointer-events: none  // auto默认值.none:不捕捉target事件(实现穿透) 用途:当需要使用透明遮罩并且允许点击遮罩下方元素时,或需要使用背景容器展示样式时   2. 背景图不跟随滚动条: background-image: url('xxx');         background-size: 100% 100%;         background-attachment: fixed;  // 不跟随滚动条属性设置   用途:背景图…