码迷,mamicode.com
首页 >  
搜索关键字:visible    ( 1388个结果
Bootstrap页面布局7 - Bootstrap响应式布局的实用类
在bootstrap-responsive.css这个CSS样式表中已经为我们设定好了几个实用的类: .visible-phone: 在智能手机设备上显示这个元素,在其他设备上隐藏该元素 .visible-tablet: 在平板电脑上显示这个元素,在其他设备上隐藏该元素 .vi...
分类:其他好文   时间:2014-07-30 12:09:23    阅读次数:220
delphi 判断是否出现滚动条
delphi 判断是否出现滚动条 if (GetWindowlong(Stringgrid1.Handle, GWL_STYLE) and WS_VSCROLL) 0 then ShowMessage('Vertical scrollbar is visible!'); if (GetWindowl...
分类:其他好文   时间:2014-07-29 21:23:52    阅读次数:337
移动webapp页面适配方案
Viewport(视口)概念In web browsers, the viewport is the visible portion of the entire document.移动端浏览器在一个通常比屏幕更宽的虚拟”窗口“(视口)中渲染页面,从而无需将所有页面都压缩进小屏幕里(那样会把很多没有针...
分类:移动开发   时间:2014-07-28 15:38:03    阅读次数:322
CSS3实现的渐变按钮,在IE7、IE6下的滤镜使用。
.ui-button { BORDER-LEFT-WIDTH: 0px; OVERFLOW: visible; CURSOR: pointer; FONT-SIZE: 16px; HEIGHT: 40px; BORDER-RIGHT-WIDTH: 0px; ...
分类:Web程序   时间:2014-07-24 10:19:03    阅读次数:252
POJ 3090 Visible Lattice Points 欧拉函数
#include #include using namespace std;//点(x,y)可见当且仅当x,y互质,那么我仅仅只要知道int euler(int x){// 就是公式 int i, res=x,tmp; tmp= (int)sqrt(x * 1.0) + 1; fo...
分类:其他好文   时间:2014-07-23 16:26:41    阅读次数:218
css知识点3@qunar
1、margin重叠 参考:http://blog.doyoe.com/~posts/css/2013-12-04-margin系列之外边距折叠.md 发生的条件:margin折叠元素只发生在块元素上;浮动元素不与其他元素margin折叠;定义了属性overflow且值不为visible(即创建.....
分类:Web程序   时间:2014-07-23 11:53:46    阅读次数:360
sizzle分析记录: 自定义伪类选择器
可见性:hidden:visible隐藏对象没有宽高,前提是用display:none处理的jQuery.expr.filters.hidden = function( elem ) { // Support: Opera -1; };}),取空递归这个节点,排除nodeType大于6...
分类:其他好文   时间:2014-07-22 22:43:54    阅读次数:230
个人笔记1:display与visibility用法
有人会将CSS中的属性display和visibility混淆,他们看似没什么不同,其实区别是很大的。 ? ? ? visibility属性控制定位的元素是否可见,取值包括:visible(可见)、hidden(隐藏)、inherit(继承),...
分类:其他好文   时间:2014-07-21 10:20:15    阅读次数:199
poj1436 Horizontally Visible Segments
DescriptionThere is a number of disjoint vertical line segments in the plane. We say that two segments are horizontally visible if they can be connect...
分类:其他好文   时间:2014-07-20 09:27:15    阅读次数:351
spoj 7001 Visible Lattice Points莫比乌斯反演
Visible Lattice PointsTime Limit:7000MSMemory Limit:0KB64bit IO Format:%lld & %lluSubmitStatusDescriptionConsider a N*N*N lattice. One corner is at (0...
分类:其他好文   时间:2014-07-19 09:04:12    阅读次数:221
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!