English Sentence Loading...
英语句子加载中...
浏览模式: 普通 | 列表
分类: 『代碼收藏』 | < | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | > | >>

上下左右iframe某页

[ 2007-12-16 12:22:21 | 作者: Admin ]
<body bgcolor="#000000">
<div id="Layer1" style="position:absolute; left:100px; top:100px; width:300px; height:301px; z-index:1">
<iframe scrolling="no" src="http://www.85815.com" width="100" height="100" frameborder="0"></iframe>
<html><head><title>Blueteeth Official Site</title>
<style>
body {
 background: #667788;
 font-family: tahoma;
 font-size: 16px;
 padding: 0;
 margin: 0;
 overflow: hidden;
}
img#background {
}

h1 {
 font-size: 140%;
}

#window1 {
 top: 50px;
 left: 150px;
 width: 400px;
 height: 200px;
}
#window2 {
 top: 270px;
 left: 250px;
 width: 500px;
 height: 300px;
}
...

阅读全文...
<script language="JScript" type="Text/JScript" style="behavior:url(#default#clientCaps)" id="Script1">
<!--
alert(Script1.getComponentVersion("{89820200-ecbd-11cf-8b85-00aa005b4383}","componentid"));
//-->
</script>

ASP输出BMP

[ 2007-12-14 12:16:42 | 作者: Admin ]
<%
Call Com_CreatValidCode("ValidCode")

Sub Com_CreatValidCode(pSN)

'Author: Layen
'QQ: 84815733
'E-mail: support@ssaw.net

' 禁止缓存
Response.Expires = -9999
Response.AddHeader "Pragma","no-cache"
Response.AddHeader "cache-ctrol","no-cache"
Response.ContentType = "Image/BMP"

Randomize

Dim i, ii, iii

Const cOdds = 8 ' 杂点出现的机率
Const cAmount = 36 ' 文字数量
Const cCode = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
...

阅读全文...
1.对本地播放列表的权限操作
function setMediaAccess(){
Player.settings.requestMediaAccessRights("full");
}

设置之后就能对本地的播放列表进行添加删除操作了,不过会弹出一个安全提示框,说某某站点正对您要取得您本地播放列表的操作权限,
问你是否愿意.
MediaAccessRights有三个属性值 "none", "read", or "full" (read/write). 看字面就知道是做什么用的了.这里就不多说了

2.创建一个Meida对象
var media="2.mp3";
Player.newMedia(media);

Player是已经定义好的MediaPlayer对象

3.创建当前播放列表
Player.playlis
...

阅读全文...

自动弹出全屏的代码

[ 2007-12-11 05:04:50 | 作者: Admin ]
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
url = "http://www.85815.com";

var speedX = 1;

var speedY = 1;

var bgColor = "#161616";

var txtColor = "#858585";

if (document.all) {
var wide = window.screen.availWidth;
var high = window.screen.availHeight;
}
function andBoom() {
if (document.all) {
var Boomer = window.open("","BoomWindow","fullscreen");
Boomer.document.write('<HTML><BODY
...

阅读全文...