Js代码//使得下拉框的宽度和输入框保持一致 $("#schname").css("width",$("#named").width());//监听输入框 $("#named").keyup(function (){ if($("#named").v...
分类:
其他好文 时间:
2015-07-01 17:51:24
阅读次数:
134
using UnityEngine;using System.Collections; public class PageView : MonoBehaviour{ const int ITEM_NUM = 2; //总页数 const int PAGE_WIDTH =...
分类:
其他好文 时间:
2015-07-01 17:34:03
阅读次数:
241
早在CSS1中就已经定义了border属性,使用它可以设置元素的边框风格,包括边框样式,粗细和颜色,使用以下三个值来设置:border-width //粗细border-color //颜色border-style //样式在实际的使用中我们常常将这三条属性合在一起来书写,如下所示:border:1...
分类:
Web程序 时间:
2015-07-01 16:00:52
阅读次数:
127
sharepoint list color change, column width change, add titile (bold with date)?
分类:
Web程序 时间:
2015-07-01 13:50:12
阅读次数:
113
如果只设置图片width 100%。 图片底部和div直接会有间隙, 因为图片这个属于img属性问题。img标签属于行变量标签,和文字一样,下面有一个字间距。你对img属性,增加一个 display:block; 即可去掉下面空白。
分类:
其他好文 时间:
2015-07-01 13:43:00
阅读次数:
112
#import "FourViewController.h"
#import "View+MASAdditions.h"
#import "FiveViewControllerr.h"
#define WS(weakSelf) __weak __typeof(&*self)weakSelf = self;
#define SCREEN_WIDTH [UIScreen mainScreen...
分类:
移动开发 时间:
2015-07-01 12:25:27
阅读次数:
202
#define SINGLE_LINE_WIDTH (1/[UIScreen mainScreen].scale)
#define SINGLE_LINE_ADJUST_OFFSET ((1/[UIScreen mainScreen].scale)/2)
- (void)viewDidLoad {
[super
viewDidLoad];
...
分类:
移动开发 时间:
2015-07-01 10:05:36
阅读次数:
131
接口配置参数content: {消息内容,支持HTML}title: {标题.默认:'提示'}lock: {是否锁定屏幕. 默认:false}width: {宽度,支持em等单位. 默认:'auto'}height: {高度,支持em等单位. 默认:'auto'}url: {iframe地址,存在c...
分类:
其他好文 时间:
2015-07-01 06:09:14
阅读次数:
492
效果图如下:
功能:使图片自适应居中位于容器内
限制:容器需要给定大小
使用方法:
1、引入jQuery,然后引入fitimg插件
2、给需要图片自适应的容器固定宽高
3、header .account .img { width: 40px; height: 40px; margin: 5px 5px; float: left; }
4、添加data-src属性
5...
分类:
Web程序 时间:
2015-07-01 01:04:17
阅读次数:
208
#box { width: 0; height: 0; border-style: solid; border-color: #222222 #3179ad #3c3c3c #ef8318; border-width: 100px 100px 100px 100px;}...
分类:
Web程序 时间:
2015-06-30 21:38:46
阅读次数:
115