☆★㊣論壇俱樂部㊣★☆
Would you like to react to this message? Create an account in a few clicks or log in to continue.


♀方圍..定礎..結!!♂就讓你走進我的絕界裡頭吧!! 心境不夠平靜根本不能稱得上是術者!!@o@ ''還未成為成功的術者根本不可能進入黑芒的
 
首頁歡迎頁相冊Latest images搜尋會員註冊登入
搜尋
 
 

結果按:
 
Rechercher 進階搜尋
最新主題
» why is this forum still online
程式名稱 : 環繞游標文字標語 I_icon_minitime20/1/2020, 7:45 pm 由 失去x挽回

» (10/8)CSO透視外掛,TRE外掛 全測試可用
程式名稱 : 環繞游標文字標語 I_icon_minitime19/8/2013, 10:26 pm 由 wetorct11610

» cso nst website 介紹
程式名稱 : 環繞游標文字標語 I_icon_minitime11/9/2010, 5:53 pm 由 ☆卍滿天星卍"◇

» CSO系列-菲律賓警察事件
程式名稱 : 環繞游標文字標語 I_icon_minitime7/9/2010, 7:39 pm 由 ☆我係我★某人☆

» 遇上外掛(僵屍手持 CV-47 60R)
程式名稱 : 環繞游標文字標語 I_icon_minitime7/9/2010, 7:38 pm 由 ☆我係我★某人☆

» cso 武器(手槍)
程式名稱 : 環繞游標文字標語 I_icon_minitime7/9/2010, 7:33 pm 由 ☆卍滿天星卍"◇

» cso好笑小電影[當希特勒遇上CSO外掛]
程式名稱 : 環繞游標文字標語 I_icon_minitime5/9/2010, 8:26 pm 由 ☆卍滿天星卍"◇

» 打到34關敗北
程式名稱 : 環繞游標文字標語 I_icon_minitime5/9/2010, 8:21 pm 由 ☆卍滿天星卍"◇

» hahaha
程式名稱 : 環繞游標文字標語 I_icon_minitime5/9/2010, 8:19 pm 由 ☆卍滿天星卍"◇

導航
 歡迎頁
 首頁
 會員列表
 個人資料
 常見問題
 搜尋
版面
合作伙伴
免費論壇

免费论坛


 

 程式名稱 : 環繞游標文字標語

向下 
發表人內容
☆卍滿天星卍"◇
Admin
☆卍滿天星卍


文章數 : 170
注冊日期 : 2009-09-24
年齡 : 26

程式名稱 : 環繞游標文字標語 Empty
發表主題: 程式名稱 : 環繞游標文字標語   程式名稱 : 環繞游標文字標語 I_icon_minitime11/3/2010, 9:23 pm

步驟一 :
將以下程式碼複製 , 貼在網頁原始檔HTML <body> 與 </body> 之間 .
<script language="javascript">
<!--
/*
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Original script by Ed Dekker, 2000
May be copied freely, please leave authors name unchanged.
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
variables:
orbitstyle : div style (IE)
orbitlayer : layer style (NAV)
orbitFont : layer font-family (NAV)
orbitFontSize : layer font-size (NAV)

step = orbit-speed in degrees (380/step = speed)

om_x = X -> size of circle
om_y = Y -> size of circle
(if om_x = om_y: shape=circle, else shape = elipse)

f = startingpoint (degrees) on circle

timerDelay = delay for setTimeout

x_bias = compensation X ; see .orbitstyle (id=orbit) width/height!
y_bias = compensation Y ; see .orbitstyle (id=orbit) width/height!

orbitText = text incl. HTML tags (may include <IMG ...)

*/

var orbitText = '<center><font color="#99CC00">★ HOT SHOW ★</font></center>';

//adjust your font face and size here

var orbitstyle = 'position: absolute; visibility:visible; font-family:Arial; font-size:12px; width=150px; height=100px; top:-200px; left:-200px; z-index:1;'
var orbitlayer = 'top=-200 left=-200 width=150 height=100 visibility="show"'
var orbitFont = 'Arial, Helvetica';
var orbitFontSize = '12px';

var step = 5; //修改移動速度,值愈大移動速度愈快
var om_x = 100;
var om_y = 60;
var x_bias = 65;
var y_bias = 25;

timerDelay = 2;

var timer; var a; var b; var ax; var ay; var x; var y; var f = 0;

// this handles the onmouseover event
function handle(ev)
{
clearTimeout(timer);
x = (document.layers) ? ev.pageX : event.clientX
y = (document.layers) ? ev.pageY : event.clientY
timer = setTimeout("turn()",1)
return true;
}

// this sets the X/Y positions of the orbit-DIV
function turn()
{
if (f>360) {f = 0}
//niftyMath(tm)
a = Math.sin(f/180*3.1415);
b = Math.cos(f/180*3.1415);
ax = (x - x_bias) + (om_x * a)
ay = (y - y_bias) + (om_y * b)
if (document.all)
{
document.all.orbit.style.posLeft = ax;
document.all.orbit.style.posTop = ay;
}
else
{
document.orbit.moveToAbsolute(ax,ay);
}

f += step;
timer=setTimeout("turn()",timerDelay);
}
//-->
</script>

<script>
if (document.layers) {window.captureEvents(Event.MOUSEMOVE); window.onmousemove = handle; }
else { document.onmousemove = handle; }

if (document.layers) {
document.write('<layer id="orbit" ')
document.write(orbitlayer)
document.ids.orbit.fontFamily=orbitFont;
document.ids.orbit.fontSize=orbitFontSize;
}

else {
document.write('<div id="orbit" ')
document.write('style="' + orbitstyle + '">') }
document.write('<p align="center">' + orbitText + '</p>')

if (document.layers) {
document.write('</layer>') }
else {
document.write('</div>') }
//-->
</script>



 
回頂端 向下
http://enjoytheworld.forum888.tw
 
程式名稱 : 環繞游標文字標語
回頂端 
1頁(共1頁)

這個論壇的權限:無法 在這個版面回復文章
☆★㊣論壇俱樂部㊣★☆ :: 俱樂部之城 I :: 程式分享俱樂部-
前往: