码迷,mamicode.com
首页 >  
搜索关键字:hidden    ( 3931个结果
jquery-图片轮播(新手请大神指教一下)
这是我刚学jquery写的,感觉效果不是很好。#scrollPics{ height: 330px; width: 980px; margin-bottom: 10px; overflow: hidden; position:relative;}.slider ul{ ...
分类:Web程序   时间:2014-08-17 22:45:53    阅读次数:202
jquery页面加载效果
此为有时页面加载很慢时体验效果很不好而写的加载动画CSS样式:#loading{position:fixed;_position:absolute;top:50%;left:50%;width:124px;height:124px;overflow:hidden;background:url(wai...
分类:Web程序   时间:2014-08-17 12:57:32    阅读次数:162
CSS 高度自适应
当html,body的高度为百分比时,的高度根据父元素来计算,的高度根据可视窗口的高度度来计算,所以在上面的示例中 html,body{ height:100%; overflow:hidden;} 表示、的高度为整个内容可视窗口的高度,并且内容超出一屏时隐藏滚动条,而下面又使用了 body{ o....
分类:Web程序   时间:2014-08-15 09:20:27    阅读次数:244
POJ 1200 Crazy Search(Hash)
Description Many people like to solve hard puzzles some of which may lead them to madness. One such puzzle could be finding a hidden prime number in a given text. Such number could be the number of d...
分类:其他好文   时间:2014-08-14 23:55:56    阅读次数:329
block(块级元素)和 inline(内联元素) 的区别
<tdstyle="word-break:break-all">强制换行<tdstyle="width:80px;display:block;boverflow:hidden;">超出隐藏,注意要设置宽度。内联转化为块状:display:block或float:left/right块状转化为内联:display:inline;但是要注意内联元素是不能设置宽度和高度的。那就..
分类:其他好文   时间:2014-08-14 04:04:48    阅读次数:554
Hidden、ViewState、ControlState 区别
1.使用隐藏域Session、Application和Cache都是保存在服务器内存中的。一般来说我们是无权访问客户端的机器,把数据直接保存在客户端的(Cookie是一个例外,不过Cookie只能保存不超过4K的字符串)。我们可以想一下还有哪里可以让我们暂时保存数据的?那就是页面!如果我们在Web页...
分类:其他好文   时间:2014-08-14 01:19:48    阅读次数:229
css限制div字符超出部分,简单有方便
1 text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical...
分类:Web程序   时间:2014-08-13 21:52:17    阅读次数:231
手机页面样式小问题收集
1. 伪类 :after 1. 清楚浮动div:after{ overflow:hidden; } 2. 制作三角形div:after{ content:''; display:block; width:0; border-top:8px solid #000; border-left:8p...
分类:移动开发   时间:2014-08-13 12:56:26    阅读次数:234
HDU-2437-Jerboas(BFS+优先队列)
Problem Description       Jerboas are small desert-living animals, which resemble mice with a long tufted tail and very long hind legs. Jerboas shelter in well-hidden burrows. They create two types o...
分类:其他好文   时间:2014-08-13 10:33:25    阅读次数:259
HDU 2594 Simpsons’ Hidden Talents KMP题解
KMP的应用。直接使用s1产生next 数组,然后在s2中搜索s1,那么记录最后一个搜索到的数值,就是s1的前缀在s2中的最长后缀了。 本题应该不能直接调用strstr了吧。 #include #include #include #include #include #include #include #include #include #include #include ...
分类:其他好文   时间:2014-08-12 19:09:14    阅读次数:192
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!