码迷,mamicode.com
首页 >  
搜索关键字:scroll bar    ( 8099个结果
PHP 中const 与define 区别
1、const用于类成员变量定义,一旦定义且不能改变其值。define定义全局常量,在任何地方都可以访问。2、define不能在类中定义而const可以。3、const不能在条件语句中定义常量if (...) { const FOO = 'BAR'; // invalid } but ...
分类:Web程序   时间:2014-07-07 15:11:52    阅读次数:210
IE中图片不显示火狐中可以显示解决方法
我的背景图片是png格式的,在IE中不显示但是在火狐和chrom中显示正常,以下是代码:body{ background: url(image/bj.jpg) no-repeat scroll 0px 0px;}更改图片类型为jpg格式就可以了
分类:其他好文   时间:2014-07-07 12:22:14    阅读次数:194
NGUI 学习笔记之一 ScrollView
一、createScrollView1、First, select the panel you want to be your scroll view and right-click anywhere in the Scene View to bring up the context menu, t...
分类:其他好文   时间:2014-07-03 20:46:51    阅读次数:278
详解Android ActionBar之一:ActionBar概述与创建
前面一个系列中讲的是Fragment的内容,Android 3.0中除Fragment外,Action Bar同样也是一个很重要的知识点。我们经常使用Action Bar来替代传统的标题栏。如果是Android平板设备的话,屏幕越大,通过Action Bar设计的标题可以展示的内容越丰富,操作更.....
分类:移动开发   时间:2014-07-03 12:24:15    阅读次数:209
[leetcode] Largest Rectangle in Histogram
Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the hist...
分类:其他好文   时间:2014-07-03 11:09:35    阅读次数:185
压力单位MPa、Psi和bar之间换算公式
压力单位MPa、Psi和bar之间换算公式1bar=10^5PaPsi为英制压力单位.“磅力每平方英寸(1bf/in2)为1psi=6894.76 pa; 1bar等于10的5次方=10^5 pa ;1atm等于一个标准大气压=101325pa ;1at等于一project大气压(千克力每平方厘米k...
分类:其他好文   时间:2014-07-02 19:50:11    阅读次数:188
AngularJs-destroy事件
$scope.$on("$destroy", function() { //清除配置,不然scroll会重复请求 })在Controller中监听$destory事件,这个事件会在页面发生跳转的时候触发。在页面跳转之后,这个页面监听的一些全局事件,...
分类:Web程序   时间:2014-07-01 23:49:41    阅读次数:1927
js 的try catch应用
在JavaScript可以使用try...catch来进行异常处理。例如:try { foo.bar();} catch (e) { alert(e.name + ": " + e.message);}目前我们可能得到的系统异常主要包含以下6种:EvalError: raised when an e...
分类:Web程序   时间:2014-07-01 13:31:30    阅读次数:249
Useful Gnome-shell extensions
In Gnome 3, gnome-shell is used for displaying the top bar. The widgets can be installed online from http://extensions.gnome.org. After installation, ...
分类:其他好文   时间:2014-06-30 13:33:22    阅读次数:172
View的onSaveInstanceState和onRestoreInstanceState过程分析
为什么要介绍这2个方法呢?这是因为在我们的开发中最近遇到了一个很诡异的bug。大体是这样的:在我们的ViewPager中有2页的root view都是ScrollView,我们在xml里面都用了android:id="@+id/scroll_view"这样的代码,即2个布局里面的ScrollVi.....
分类:其他好文   时间:2014-06-29 20:06:24    阅读次数:277
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!