原文链接:http://www.guimigame.com/thread-49-1-1.html,对于代码有什么不明白的地方,可以到这里给我发问哦!
效果演示
废话不多说了,直接上代码!
JS重现_经典拼板游戏
*{margin:0;padding:0;}
.shell{margin:20px auto;position:relative;width:499px;height:...
分类:
Web程序 时间:
2014-05-10 03:45:50
阅读次数:
425
public View getView(int position, View
convertView, ViewGroup parent) { View view = inflater.inflate(R.layout.gv_item,
null); TextView tv = (TextV...
分类:
其他好文 时间:
2014-05-10 00:41:22
阅读次数:
283
Action(){ char dest[500]=""; char
src[500]="%25E9%25AB%2598%25E4%25B8%25AD"; char oldstr[100]="%"; char
newstr[100]="**"; char * position; int strin.....
分类:
其他好文 时间:
2014-05-09 20:43:15
阅读次数:
412
参考资料:http://blog.csdn.net/vipzjyno1/article/details/24577023
非常感谢这个兄弟!先查看这2个方法的源码:scrollTo: 1 /** 2 * Set the scrolled position of your view.
Th...
分类:
其他好文 时间:
2014-05-09 15:44:10
阅读次数:
277
题目描述N integers are arranged on a circle clockwise.
Given two integers M and K. For each position, you should take M continuous
integers on the left an...
分类:
其他好文 时间:
2014-05-09 10:30:49
阅读次数:
350
操作字符串${string: position :length}
取子串子串删除${string# substring} 从左边截掉第一个匹配的 substring${string## substring}
从左边截掉最后一个匹配的 substring${string% substring} 从右边...
分类:
其他好文 时间:
2014-05-09 03:59:36
阅读次数:
244
一丶margin:0
auto;试用最多的方法,简单实用。二丶vertical-align:middle;只适用于内嵌元素,比如说一个div中有一个图片和文字,要让图片和文字中线对齐。
关注前端,关注用户体验-冀 三丶position:relative;通过给...
分类:
Web程序 时间:
2014-05-08 10:28:41
阅读次数:
431
很多网站已经不满足于一级标题的展示,可能很多的时候有二级标题,三级标题等等。
那么如何设置二级标题以及如何把二级标题做的好看呢。
下面的代码中注意:
1.为了让二级标题有渐隐渐现的感觉,用了transition样式
2.二级标题的定位始终是一个困扰我好久的难题。
要确保一级标题有position属性(不能没有也不能设为static),只有一级标题(父级标题)设了position属...
分类:
Web程序 时间:
2014-05-07 23:44:04
阅读次数:
477
HTML标签中的一部分,仅供参考 1002 小猫咪 //图片 200
//写在外面,隐藏显示,定位提示图片的位置.clsImg{ position:absolute; border:1px solid
#ccc; width:200px; height:200...
分类:
移动开发 时间:
2014-05-07 20:36:33
阅读次数:
436
背景
项目要求网站首页放Views生成的区块,并且要求有更多链接。
Views生成的区块默认的更多链接只能选在列表上方和下方
下图是默认在上方的样式图:
为了美观,我将更多链接上移了若干个像素:
.more-link {
position: absolute;
top: 10px;
left: 390px;
}
效果图:
问题
然而,当我在这个区块外面再套一...
分类:
Web程序 时间:
2014-05-06 15:35:27
阅读次数:
454