2008年9月19日 星期五

DGV-708 8ch Stand Alone DVR


 


 


 


 


 


 


 

Model


DGV 708

Video In/Out

Input

8ch Input (1.0 Vp-p,75Ω BNC TYPE)

(option RJ45 Input)

Output

3ch Output (BNC*2,S-Video*1)

8ch LOOPING

Monitoring

Screen Split

Full Screen / 9 Screen / Split

Resolution

NTSC: 720(H) X 480(V) / PAL: 720(H) X 576(V)

Display Quality

High (20KB)/ Normal (15KB) / Low (10KB)

Sequence 

Available 

Camera Adjustment 

Available 

Speed

240 fps (8 X 30fps)

Record /

Playback

Speed

Max 60fps

Resolution 

NTSC: 640(H) X 224(V) / PAL: 640(H) X 272(V)

Storage

Up to 1 TB (Depending Power Supply)

Compression

MJPEG 

Record Mode

Continue / Motion Detect / Alarm / Schedule

Motion Detect

Adjustable

Search Mode

Time Date / Event

Others

Back-up

VCR /DVDR /USB /CDRW

Alarm

8ch Alarm In / 1ch Alarm Output

Audio

1ch Audio In/1ch Audio Out

Network 

Support TCP/IP

Mouse 

Support PS2 mouse

PTZ 

Support PELCO D type

VGA 

Support 1024*768,1280*1024 ( Optional )

Setting

Plug & Play

Auto Record 

Yes 

Mechanics

Operate Temperature

32℉~140℉ (0℃~60℃)

Operate Humidity

Less than 90%

Size

380mm X 280mm X 70mm

NET Weight

3.3 kg

System

NTSC / PAL

Power Supply

ADAPTER(12V DC 5 A)

2008年3月15日 星期六

Flash去背設定

如果要將FLASH檔案在網頁裡去背, 請在DREAMWEAVER中的參數設定 wmode 值為transparent

2008年2月4日 星期一

歡迎視窗

將以下的控制碼先複製起來。


 

然後將剛剛複製的東西在網頁中的 <BODY> 之中貼上就大功告成了!


 


 

<BODY onLoad="alert('歡迎您來到adea教學網!\n\n好東西要和好朋友分享!')" >


 


 

最後,更改原始碼中的歡迎內容就可以了!


 

那個 \n 就是強迫換行的參數

關閉視窗

"連結"輸入


 

javascript:window.close();

鎖定右鍵及拖曳選取

將語法插入在<body>中


 

ONDRAGSTART="window.event.returnValue=false" ONCONTEXTMENU="window.event.returnValue=false" onSelectStart="event.returnValue=false"

標題列跑馬燈

將語法插入在</head>之後


 

----------------------------------------


 

<script language="JavaScript1.2">


 

var message="敬請給予本站支持!"

var message=message+" "

i="0"            

var temptitle=""

var speed="150"


 

function titler(){

if (!document.all&&!document.getElementById)

return

document.title=temptitle+message.charAt(i) //sets the initial title

temptitle=temptitle+message.charAt(i) //increases the title by one letter

i++                     //increments the counter

if(i==message.length)             //determines the end of the message

{

i="0"                     //resets the counter at the end of the message

temptitle=""                 //resets the title to a blank value

}

setTimeout("titler()",speed)          //Restarts. Remove line for no-repeat.

}


 

window.onload=titler

</script>

圖片文字跑馬燈

網頁中的 <BODY> 之後貼上


 

------------------------------------------


 

<script language="JavaScript1.2">

<!--

var marqueewidth=470; // 跑馬燈的寬度(IE 中可用百分比,注意要加引號)

var marqueeheight=40; // 跑馬燈的高度

var speed=6; // 捲動速度(越大越快)

var marqueecontents='<IMG src="8831.gif" height=31 width=88 border=0> 這是一個新型的跑馬燈!'; // 跑馬燈顯示的字串


 

if (document.all) document.write('<marquee scrollAmount='+speed+' style="width:'+marqueewidth+'">'+marqueecontents+'</marquee>');

function regenerate() {window.location.reload();}

function regenerate2(){

if (document.layers){

setTimeout("window.onresize=regenerate",450);

intializemarquee();

}

}

function intializemarquee(){

document.cmarquee01.document.cmarquee02.document.write('<nobr>'+marqueecontents+'</nobr>');

document.cmarquee01.document.cmarquee02.document.close();

thelength=document.cmarquee01.document.cmarquee02.document.width;

scrollit();

}

function scrollit(){

if (document.cmarquee01.document.cmarquee02.left>=thelength*(-1)){

document.cmarquee01.document.cmarquee02.left-=speed;

setTimeout("scrollit()",100);

} else {

document.cmarquee01.document.cmarquee02.left=marqueewidth;

scrollit();

}

}

window.onload=regenerate2;

//-->

</script>

<ilayer width=&{marqueewidth}; height=&{marqueeheight}; name="cmarquee01">

<layer name="cmarquee02"></layer>

</ilayer>