一、BOM 1、window{ document{ anchors forms images links location } frames history location navigator screen } 2、定时器 function execute() { console.info("执行 ...
分类:
其他好文 时间:
2016-04-19 06:16:00
阅读次数:
134
Window 1. doucument frames history location navigator screen | anchors forms location images links 2.命名函数:function funcName() { } 其中,funcName是函数的名称,可以 ...
分类:
其他好文 时间:
2016-04-18 22:33:32
阅读次数:
257
(function(){ var $doc = $(document); var shareHandlers = { 'twitter': function(prop,shareUrl){ var D=550,A=450,C=screen.height,B=screen.width,H=Math.r ...
分类:
Web程序 时间:
2016-04-18 20:26:42
阅读次数:
207
UIView *bgRight=[[UIView alloc]initWithFrame:CGRectMake(SCREEN_WIDTH/2, 0, SCREEN_WIDTH/2, 35)]; bgRight.backgroundColor=[UIColor whiteColor]; [bgView ...
分类:
其他好文 时间:
2016-04-18 13:22:24
阅读次数:
161
screen -S <name> 直接建立并进入<name>窗口 control+a d 暂时退出窗口 (在会话内) screen -r <name> 重新进入<name>会话 exit 关闭会话(在会话内) screen -dmS <name> 新建<name>窗口 但是不自动进入 (脚本使用) ...
分类:
其他好文 时间:
2016-04-18 10:03:05
阅读次数:
132
在BootAnimation開始画图之前,会先做一次clear screen的动作,避免出现前面的图干扰到BootAnimation的显示。 通过check main_log先确认播放开机动画是哪个function。在相应function删除clear screen的动作的相应代码。 /framew ...
分类:
移动开发 时间:
2016-04-18 10:02:22
阅读次数:
197
BOM 1、(*关系图*) window document frames history location navigator screen | anchors forms imgaes links location 2、定时器 (1)、setTimeout(定时执行) -->实现一个函数能够在指定 ...
分类:
其他好文 时间:
2016-04-18 00:42:10
阅读次数:
126
有时候,每次看到TI的logo自己心里是不爽的,因为本来就是定制的东西,为什么还要他的开机Logo呢,于是自己尝试移植编译一下Splash。 ...
分类:
其他好文 时间:
2016-04-16 21:22:46
阅读次数:
391
你是不是经常需要远程登录到Linux服务器?你是不是经常为一些长时间运行的任务头疼?还在用 nohup 吗?那么来看看 screen 吧,它会给你一个惊喜! 你是不是经常需要 SSH 或者 telent 远程登录到 Linux 服务器?你是不是经常为一些长时间运行的任务而头疼,比如系统备份、ftp ...
分类:
系统相关 时间:
2016-04-16 21:06:04
阅读次数:
330
1. CSS判断横屏竖屏 写在同一个CSS中 @media screen and (orientation: portrait) { /*竖屏 css*/} @media screen and (orientation: landscape) { /*横屏 css*/}分开写在2个CSS 竖屏<li ...
分类:
移动开发 时间:
2016-04-15 16:44:03
阅读次数:
166