当设计图做为背景图片太大时,必会出现滚动条,但是项目那边不希望出现滚动条,是一屏显示的,那就可以这样设计Css
img{ display:block; width:100%; height:100%;}
这样就可以让图片在页面中平铺,而不产生滚动条,但是有一个问题,当显示器的尺寸很小或13寸显示器的时候,图片会严重变形,但是这是目前来说最好的解决方案了。又不出现滚动条。做适配时也可...
分类:
其他好文 时间:
2014-12-04 15:37:40
阅读次数:
146
修改Launcher2/res/value/Dimens.xml 中apps_customize_cell_width 和apps_customize_cell_height的大小。多大的值合适,需要结合代码。
PagedViewCellLayout 中estimateCellHSpan和estimateCellVSpan获取返回值n(n就是每屏单元格数目的列和行)。
以estim...
分类:
移动开发 时间:
2014-12-04 12:09:05
阅读次数:
140
- (void)application:(UIApplication *)application didChangeStatusBarFrame:(CGRect)oldStatusBarFrame{ float height = application.statusBarFrame.siz...
分类:
移动开发 时间:
2014-12-04 11:29:35
阅读次数:
145
1: window.open参数解释:window.open 弹出新窗口的命令;'page.html' 弹出窗口的文件名;'newwindow' 弹出窗口的名字(不是文件名),非必须,可用空''代替;height=100 窗口高度;width=400 窗口宽度;top=0 窗口距离屏幕上方的象素值;...
分类:
编程语言 时间:
2014-12-04 09:58:46
阅读次数:
221
cc.spriteFrameCache.addSpriteFrames(s_plist);varspriteTest001=cc.Sprite.create(cc.spriteFrameCache.getSpriteFrame("16.jpg")); spriteTest001.setAnchorPoint(0.5,0.5); spriteTest001.setPosition(size.width/2,size.height/2); this.addChild(spriteTest001,4);
分类:
Web程序 时间:
2014-12-04 06:32:37
阅读次数:
152
一、创建元素1、jQuery内部使用document.createElement创建元素实例://jQuery 源代码方法一:$("").css({ 'width': '100px', 'height': '50px', 'padding': '10px', 'border'...
分类:
Web程序 时间:
2014-12-04 00:38:34
阅读次数:
326
Givennnon-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the histog...
分类:
其他好文 时间:
2014-12-03 22:42:18
阅读次数:
127
鼠标移上去,元素位置移动,显示隐藏功能效果。(推荐在火狐或谷歌中观看,会有有动画效果)效果如图:css: .box { width: 200px; height: 300px; position: relative; margin: 200px auto 0 auto; } .box:hov...
分类:
Web程序 时间:
2014-12-03 14:14:14
阅读次数:
413
原始图片:效果如图:css: .box { width: 150px; padding: 3px; border: 1px solid #e5e5e5; } .img { width: 150px; height: 200px; position: relative; backgrou...
分类:
Web程序 时间:
2014-12-03 14:06:01
阅读次数:
335
ie6对hover支持不完善,所以不兼容,最好在火狐或谷歌等标准浏览器中观看。Demo下载效果如图:css: #demo { width: 306px; height: 204px; padding: 3px; border: 1px solid #e5e5e5; margin: 100p...
分类:
Web程序 时间:
2014-12-03 14:04:47
阅读次数:
228