码迷,mamicode.com
首页 >  
搜索关键字:top    ( 21129个结果
【jQuery】 jQuery上下飘动效果
jQuery实现图片上下飘动效果function moveRocket() { $(".smallShip") //2000毫秒内top = top + 60; .animate({ 'top': '+=60' }, 2000) ...
分类:Web程序   时间:2015-08-17 15:19:51    阅读次数:107
纯CSS3实现滑动开关效果
实现效果如下: HTML结构代码:       CSS代码: /*表单开关样式*/ .ui-switch {     position: absolute;     font-size: .16rem;     right:0.07rem;     top: 50%;   ...
分类:Web程序   时间:2015-08-17 14:08:10    阅读次数:224
网页元素居中攻略记_(5)未知宽高元素绝对居中
题外话以前,我们要自适应全局居中,需要借助JS或者JQ来实现,现在有了CSS3就可以省去好多功夫了,为什么这么说!! 请看比较:传统的绝对居中 #container{ position:abosolute; top:50%; left:50%; margin-left:-包含块宽度的一半(如 -300px );...
分类:Web程序   时间:2015-08-17 12:02:05    阅读次数:181
How to make a Skype video call on iPad
Be sure your pc has a web cam. Of all notebooks, the web cam can look just like a little pit in the top edge of the display. Most notebook computers m...
分类:其他好文   时间:2015-08-17 11:38:21    阅读次数:286
【Jquery】scroll 滚动到顶部
Jquery 实现页面滚动到顶端 $(document).ready(function () { // 滚动窗口来判断按钮显示或隐藏 $(window).scroll(function () { //根据滚动条距顶部位置,显示还是隐藏top按钮 if ...
分类:Web程序   时间:2015-08-17 11:25:32    阅读次数:159
网页元素居中攻略记_(5)未知元素宽高垂直居中
题外话以前,我们要自适应全局居中,需要借助JS或者JQ来实现,现在有了CSS3就可以省去好多功夫了,为什么这么说!! 请看比较:传统的绝对居中 #container{ position:abosolute; top:50%; left:50%; margin-left:-包含块宽度的一半(如 -300px );...
分类:Web程序   时间:2015-08-17 10:13:39    阅读次数:176
重温 w3cshool css3
border-radius: 2em 1em 4em / 0.5em 3em; 兼容性IE9+、Firefox 4+、Chrome、Safari 5+ 以及 Opera 支持 border-radius 属性。等价于:border-top-left-radius: 2em 0.5em;border-...
分类:Web程序   时间:2015-08-17 06:19:41    阅读次数:154
adb命令查看报名和查看手机分辨率
打开所要查看的应用包名: EYINGCHANG:~ robotke$ adb shell dumpsys activity top | head -n 10 TASK com.ss.android.article.news id=5 ACTIVITY com.ss.android.article.news/com.ss.android.article.base.activity.Detail...
分类:移动开发   时间:2015-08-17 01:14:52    阅读次数:303
内联(行级)元素不能设置margin-top
内联(行级)元素 不能设置宽高,但padding属性可以设置,需要注意的是行级元素不能设置margin-top和margin-bottom属性,但可以设置margin-left和margin-right属性。如果需要设置行级元素的margin-top或margin-bottom属性,必须将行级元素转...
分类:其他好文   时间:2015-08-16 18:07:22    阅读次数:104
Android ADB工具-管理设备 app(二)
Android ADB工具-管理设备 app(二)标签(空格分隔): Android4.管理设备 app 命令 功能 adb install [-r|-s] 安装 apk 文件 adb uninstall [-k] 卸载 app adb shell top [-m ] 查看内存占用情况 adb sh...
分类:移动开发   时间:2015-08-16 16:40:15    阅读次数:389
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!