下载地址:https://github.com/liukaijv/mobi-datetime-picker 修改后: 这个是日期显示格式: ...
分类:
其他好文 时间:
2017-04-18 11:13:44
阅读次数:
134
<!> 跑马灯 <marquee>...</marquee>普通卷动 <marquee behavior=slide>...</marquee>滑动 <marquee behavior=scroll>...</marquee>预设卷动 <marquee behavior=alternate>...< ...
分类:
Web程序 时间:
2017-04-16 20:07:41
阅读次数:
1563
类似QQ的聊天框,当进入聊天框,直接滑动倒最底部; 需要先将以他变了view滚动倒底部,再来移动NSIndexPath, 代码如下: ...
分类:
移动开发 时间:
2017-04-16 14:19:23
阅读次数:
233
在iframe外层包一层div,加入例如以下样式: style="-webkit-overflow-scrolling:touch;overflow:auto;" 代码例如以下: <div style="width:100%;-webkit-overflow-scrolling:touch;over ...
分类:
移动开发 时间:
2017-04-16 09:32:03
阅读次数:
202
回顾HTML,跑马灯--<marquee>跑马灯内容</marquee> 参数: 作用: behavior=scroll, slide, alternate 跑马方式:循环绕行,只跑一次就停止,来回往复运动。 dirction=left,right 跑马方向:从左往右跑,从右向左。 scrollam ...
分类:
其他好文 时间:
2017-04-15 22:35:29
阅读次数:
238
封装滚动函数 function addEvent(obj,sEv,fn){ if(obj.addEventListener){ obj.addEventListener(sEv,fn,false) }else{ obj.attactEvent('on'+sEv,fn) } } function ad ...
分类:
其他好文 时间:
2017-04-13 14:45:06
阅读次数:
208
最近在做移动端的项目,用到了mui的上拉加载,整理如下: 1、需要引入的css、js <link rel="stylesheet" href="common/mui/css/mui.min.css"> <script src="js/jquery-3.2.0.min.js"></script> <s ...
分类:
其他好文 时间:
2017-04-13 11:13:19
阅读次数:
210
1 //自定义滚动条 2 ::-webkit-scrollbar-corner { 3 background-color: transparent; 4 } 5 6 ::-webkit-scrollbar-button { 7 width: 0; 8 height: 0; 9 display: no... ...
分类:
其他好文 时间:
2017-04-13 10:59:46
阅读次数:
129