MyHtml.html
*{margin:0px 0px; padding:0px 0px;}
body{background:url("img/bg.jpg");position:relative;}
#main{width:1186px;height:788px;
border:1px solid #66FF33;margin:50px au...
分类:
Web程序 时间:
2015-02-26 10:00:15
阅读次数:
195
MyHtml.html
-->
*{margin:0px ; padding:0px}
body{background:url("imgs/bg.jpg")}
.list{width:1200px; height:700px;background:rgba(0,0,0,0.3 );
box-shadow:0px 0px 5px #000;...
分类:
Web程序 时间:
2015-02-25 18:40:59
阅读次数:
246
效果参考http://vip.163.com/http://vip.sina.com.cn/特点:背景图片在不变形的情况下尽可能的显示完整,窗口不出现滚动条,始终全屏显示JS:#content代表最外层的DIV,使页面全屏.bg代表背景图片 //此参数表示图片缩放的比例,如果有需要定位在窗口某位置的...
分类:
其他好文 时间:
2015-02-11 18:10:05
阅读次数:
329
$(function(){ var _srcList = [], i = 0; //获取所有图片路径,存为数组 $('.bg').each(function(){ _srcList.push($(this).attr('src')); }) fun...
分类:
其他好文 时间:
2015-02-09 18:14:08
阅读次数:
233
弹窗支持两种模式,一种是普通信息提示框,调用方法:popup.msgPopup(msg);另一种是可以加载页面的弹窗,调用方法:popup.pagePopup(url);效果图:css代码.bg{background-color: #000;position: fixed;z-index: 9999...
分类:
Web程序 时间:
2015-02-09 10:53:42
阅读次数:
193
popuWindowXml布局<?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="wrap_content"android:layout_height="wrap_content"android:background="@drawable/local_popup_bg"android:..
1,xml布局<?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="wrap_content"android:layout_height="wrap_content"android:background="@drawable/local_popup_bg"android:orientat..
在Android中,ListView是最常用的一个控件,在做UI设计的时候,很多人希望能够改变一下它的背景,使他能够符合整体的UI设计,改变背景背很简单只需要准备一张图片然后指定属性 android:background="@drawable/bg",不过不要高兴地太早,当你这么做以后,发现背景是变...
分类:
移动开发 时间:
2015-02-03 12:55:23
阅读次数:
185
secureCRT断掉后想继续运行程序。也就是程序会在后台一直执行到结束。
secureCRT通过ssh联接到client端运行程序,如果关掉窗口或者断开连接时,任务会被kill。
为了程序能够后台执行到结束:
1.可以用&:
比如 python test.py 改成 python test.py &
来调用执行。
2.另外,还有一种方式:通过ctrl+z、bg等一系列的命...
分类:
系统相关 时间:
2015-01-30 19:41:47
阅读次数:
257
用了好多次,忘了好多次,也查了好多次,我也是醉了……fg、bg、jobs、&、ctrl + z都是跟系统任务有关的1、&:放在命令的后面就是后台执行了。2、ctrl+z:把一个程序挂起,并且暂停。3、jobs:查看当前有多少在后台运行的命令。4、fg:将后台中的命令调至前台继续运行(fg:jobnu...
分类:
系统相关 时间:
2015-01-30 19:07:26
阅读次数:
139