您正在查看 "blog技术" 分类下的文章 2006-11-27 17:27 一、拥有25G免费空间
空间的申请过程非常的简单,到 http://amd.streamload.com,找到"Sign
Up NOW(现在就注册)"按扭并打开相应的页面,选择单击“Choose
Free(免费服务)”按扭,接着分别输入用户名、登陆口令和邮件的资料,输入完之后“Create
Account(创建帐户)”按扭即可申请完毕。最后单击“Go to my
Account(进入我的帐户)”就可以登陆空间。
二、快速上传文件
登陆后,这个空间已经为我们准备了“Video Share(视频)”、“File
manager(文件)”等分类,进入某一个分类空间后,可以单击“Create
Folder(创建目录)”按扭完成二级、三级目录。如果选择大量的文件上传,点“File
Manager(文件)”连接,创建好二级目录选择“UP
lode(上传)”就可以上传。
三.快速下载文件
方法很简单:登陆空间地址,选择右键“另存为”或者使用专门的软件下载。
四。文件共享
网络硬盘中一般会收录大量精品文件,在“FILE
MANAGER”页面中选中目标文件,单击“MOVE”按扭,就会弹出一个操作窗口,只要将目标文件由“MY
FILES”转移到“HOSTED”中,就 |
2006-11-27 7:08 代码如下:
<div id="marquees"> <!-- 这些是字幕的内容,你可以任意定义 --> <a href=http://blog.sina.com.cn/m/sdzwdq>链接1</a>
<br> <a href="http://blog.sina.com.cn/m/sdzwdq">链接2</a>
<br> <a href="http://blog.sina.com.cn/m/sdzwdq">链接3</a>
<br> <a href="http://blog.sina.com.cn/m/sdzwdq">链接4</a>
<br> <!-- 字幕内容结束 -->
</div>
<!-- 以下是javascript代码 -->
<script><script language="javascript">
<!--
marqueesHeight=200; //内容区高度
stopscroll=false; //这个变量控制是否停止滚动
with(marquees){
noWrap=true; //这句表内容区不自动换行
style.width=0; //于是我们可以将它的宽度设为0,因为它会被撑大
style.height=marqueesHeight;
style.overflowY="hidden"; //滚动条不可见
onmouseover=new Function("stopscroll=true"); //鼠标经过,停止滚动
onmouseout=new Function("stopscroll=false"); //鼠标离开,开始滚动
}
//这时候, |
2006-11-25 11:54 本视频内容来自互联网,对视频中的内容本博客不负任何责任!
视频代码如下:
<FIELDSET style="WIDTH: 480px"
align=left><LEGEND>精彩视频库--冰河推荐</LEGEND><TD
align="middle">
<OBJECT height=385 width=480><PARAM NAME="movie"
VALUE="http://dv.ouou.com/swf/ouou.swf?id=e38b5942f5d37">
<embed src="http://dv.ouou.com/swf/ouou.swf?id=e38b5942f5d37"
type="application/x-shockwave-flash" width="480"
height="385"></embed></OBJECT></TD></TR></TBODY></TABLE>
<DIV></DIV>
<DIV></DIV></FIELDSET>
精彩视频库--冰河推荐
|
2006-11-25 6:59
代码如下:
<SCRIPT><SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var message = new Array();
// Set your messages you want typed into the title bar below.
// To add more messages, just add more elements to the array.
message[0] = "欢迎光临笑天网络杂志!★★★★";
message[1] = "你的到来使笑天感到十分荣幸★★★★";
message[2] = "希望你在这里玩得愉快★★★★";
message[3] = "如果你在使用中有什么问题,请告诉我们★★★★";
message[4] = "我们会尽我们能力给你帮助★★★★";
// Set the number of repetitions (how many times a given message is typed out
// before moving onto the next message).
var reps = 1;
var speed = 275;// Set the overall typing speed (larger number = slower action).
var hold = 4 // set the length of time to display the whole phrase before retyping (larger number = longer)
// DO NOT EDIT BELOW THIS LINE.
var p = message.length;
var q = 0;
var r = 0;
var C = 0;
var mC = 0;
var s = 0;
var sT = null; |
2006-11-24 9:48
代码如下:
<script><script language="JavaScript">
if (navigator.appName.indexOf("Internet Explorer") != -1)
document.onmousedown = noSourceExplorer;
function noSourceExplorer()
{
if (event.button == 2 | event.button == 3)
{
alert("别动...让我带你去一个好玩的地方吧!");
location.replace("http://blog.sina.com.cn/m/sdzwdq");
}
}
</script>
特别提醒:
代码一旦放在空白面板里就别去动它,因为新浪会屏蔽<script>,所以我们使用JS代码都要在代码前多加个<script > ,而且不能放在什么东西都没的空白面板里。 代码保存过一次后再次打开红色的<script> 就没了,再次保存的话要重新 |
2006-11-24 9:18 2006-11-24 8:58 先一个例子,比如说下面这段代码:
<style type="text/css">
a:link {text-decoration:none;color:blue;}
a:hover {text-decoration:underline;color:red;}
a:active
{text-decoration:none;color:yellow;}
a:visited {text-decoration:none;color:green;}
</style>
其效果是:未被点击时超链接文字无下划线,显示为蓝色;当鼠标放在链接上时有下划线,链接文字显示为红色;当点击链接时,即链接被激活,链接无下划线,显示为黄色;当点击链接后,也就是链接已被访问过后,链接无下划线,显示为绿色。
其中:
a:link 指正常的未被访问过的链接;
a:hover 指鼠标在链接上;
a:active 指正在点的链接;
a:visited 指已经访问过的链接。
参数设置:
text-decoration |
2006-11-23 7:02
代码如下:
<script><script language="JavaScript">
<!-- Scroll Surprise by sdzwdq@163.com
colours=new Array('ff0000','fff000','00ff00','ffa500','ff00ff','00ffff','ffffff')
function flash(){
var clrPos=Math.floor(Math.random()*colours.length)
with (window.document.body.style){
scrollbarTrackColor=document.bgColor;
scrollbarFaceColor=document.bgColor;
scrollbarArrowColor=colours[clrPos];
scrollbar3dLightColor=colours[clrPos];
scrollbarHighlightColor=colours[clrPos];
scrollbarShadowColor=colours[clrPos];
scrollbarDarkShadowColor=colours[clrPos];
borderWidth=2;
borderStyle='solid';
borderColor=colours[clrPos];
}
}
if (document.all)window.document.body.onscroll=flash;
//-->
</script>
特别提醒:
代码一旦放在空白面 |
2006-11-21 10:02
代码如下:
<script><script language="JavaScript">
<!--
self.moveTo(0,0)
self.resizeTo(screen.availWidth,screen.availHeight)
//-->
</script>
特别提醒:
代码一旦放在空白面板里就别去动它,因为新浪会屏蔽<script>,所以我们使用JS代码都要在代码前多加个<script > ,而且不能放在什么东西都没的空白面板里。 代码保存过一次后再次打开红色的<script> 就没了,再次保存的话要重新加上个<script>,因此一般第一次保存后最好别去动它!
添加 |
2006-11-20 16:30
代码如下:
<script><script>
var tmp=window.open("about:blank","","fullscreen=1")
tmp.moveTo(100,100)
tmp.resizeTo(600,400)
tmp.focus()
tmp.location="http://blog.sina.com.cn/m/sdzwdq"
</script>
特别提醒:
代码一旦放在空白面板里就别去动它,因为新浪会屏蔽<script>,所以我们使用JS代码都要在代码前多加个<script > ,而且不能放在什么东西都没的空白面板里。 代码保存过一次后再次打开红色的<script> 就没了,再次保存的话要重新加上个<script>,因此一般第一次保存后最好别去动它!
|
| | |