码迷,mamicode.com
首页 >  
搜索关键字:height    ( 24230个结果
cocos3 抛物线调用
auto sp=Sprite::create("hero.png"); sp->setPosition(visibleSize.width/2,visibleSize.height/2); addChild(sp); auto pa=Parabola::create(1,s...
分类:其他好文   时间:2014-12-16 14:43:25    阅读次数:139
3、网页制作Dreamweaver(表单form)
表单form(虚线不显示)1、写法:1、 解释name、id自定义,用于寻找此块内容3、内容(1)文本框:可以设置width,height姓名 ————标签,可以不写,为易于寻找———value是预设词(2)隐藏域必须在表单中,存储临时数据在设计区域显示:(3)文本区域是一个长的文本框,可以设置wi...
分类:Web程序   时间:2014-12-16 11:32:36    阅读次数:180
个人笔记-CSS
.hiddenoverflowtext { width:265px; line-height:25px; text-overflow:ellipsis; white-space:nowrap; overflow:hidden; display: inline-block; }...
分类:Web程序   时间:2014-12-16 10:08:09    阅读次数:180
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-12-16 08:40:59    阅读次数:224
[已读]Sass与Compass实战
介绍了Sass基础语法与Compass框架,这个网上参考文档就OK了,另外介绍了compass生成图片精灵和相应的css,貌似现在单纯用sass和compass的挺少,要不grunt,要不FIS,而grunt和FIS貌似都有自己的图片精灵方案(好吧,我都没用过)?所以,这本书也没什么必要看了→ →
分类:其他好文   时间:2014-12-16 00:52:01    阅读次数:178
伪元素清除浮动?这个你了解吗?
随着前端的不断发展,面对浮动这个问题我们一般喜欢用伪元素清除浮动,下面这段样式号称万能清除浮动.clearfix:after { content: "."; display:block; height: 0; clear: both; } .clearfix { zoom: 1; }看着好像没啥为题...
分类:其他好文   时间:2014-12-15 20:19:15    阅读次数:202
POJ 1743 Musical Theme 后缀数组 不可重叠最长重复子串
二分长度k 长度大于等于k的分成一组 每组sa最大的和最小的距离大于k 说明可行 #include #include #include using namespace std; const int maxn = 20010; int s[maxn]; int sa[maxn]; int t[maxn], t2[maxn], c[maxn]; int rank[maxn], height[m...
分类:编程语言   时间:2014-12-15 19:05:57    阅读次数:214
渐变色背景
1、实现渐变色背景 1 private void Form1_Paint(object sender, PaintEventArgs e) 2 { 3 Paint_Background(this.Left,this.Width,this.Height, e)...
分类:其他好文   时间:2014-12-15 16:53:23    阅读次数:128
页面图片加载完毕以后执行JS代码
// 案例列表页左右div等高 $(".case-list-cont img").each(function(idx,ele){ if (ele.complete==true) { var rightAdvHeight = $(".case-list-cont").find(".right-div").height(); ...
分类:Web程序   时间:2014-12-15 12:22:05    阅读次数:213
Android EditText 光标样式设置
android不同手机对于edittext光标显示样式不一,所以如果设置不同手机显示一样的效果呢,统一设置一个样式就可以了,示例代码如下: <EditText android:layout_width="fill_parent" android:layout_height="wrap...
分类:移动开发   时间:2014-12-15 12:20:19    阅读次数:261
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!