|
サンプル1♪ |
| 微弱♪ |
|
Power=1 freq=20 oneshot loop=100 on=512ms off=512ms の場合
微弱
|
| 弱♪ |
|
Power=3 freq=16 oneshot loop=100 on=512ms off=512ms の場合
弱
|
| 普通♪ |
|
Power=3 freq=16 oneshot loop=100 on=256ms off=256ms の場合
普通
|
| 強♪ |
|
Power=3 freq=12 oneshot loop=100 on=256ms off=256ms の場合
強
|
| 最強? |
|
Power=7 freq=7 oneshot loop=100 on=192ms off=192ms の場合
最強?
|
|
ここで使っているソース |
<html>
<head>
<SCRIPT LANGUAGE="JavaScript">
<!--
function P3on(n) {
if(navigator.appVersion.substring(0,19)=="3.0 (DreamPassport/"){
document.embeds[n].vibrate=1;
}
}
function P3off(n) {
if(navigator.appVersion.substring(0,19)=="3.0 (DreamPassport/"){
document.embeds[n].vibrate=0;
}
}
//-->
</SCRIPT>
</head>
<body>
<embed type=application/x-dreamcast-vibrate autostart=false power=1 freq=20 oneshot loop=100 on=512ms off=512ms hidden=true>
<embed type=application/x-dreamcast-vibrate autostart=false power=3 freq=16 oneshot loop=100 on=512ms off=512ms hidden=true>
<embed type=application/x-dreamcast-vibrate autostart=false power=3 freq=16 oneshot loop=100 on=256ms off=256ms hidden=true>
<embed type=application/x-dreamcast-vibrate autostart=false power=3 freq=12 oneshot loop=100 on=256ms off=256ms hidden=true>
<embed type=application/x-dreamcast-vibrate autostart=false power=7 freq=7 oneshot loop=100 on=192ms off=192ms hidden=true>
<center>
<font size="3">
Power=1 freq=20 oneshot loop=100 on=512ms off=512ms の場合<BR>
<a href="JavaScript:void(0);" onMouseOver="P3on(0)" onMouseOut="P3off(0)">微弱</a><BR><BR>
Power=3 freq=16 oneshot loop=100 on=512ms off=512ms の場合<BR>
<a href="JavaScript:void(0);" onMouseOver="P3on(1)" onMouseOut="P3off(1)">弱</a><BR><BR>
Power=3 freq=16 oneshot loop=100 on=256ms off=256ms の場合<BR>
<a href="JavaScript:void(0);" onMouseOver="P3on(2)" onMouseOut="P3off(2)">普通</a><BR><BR>
Power=3 freq=12 oneshot loop=100 on=256ms off=256ms の場合<BR>
<a href="JavaScript:void(0);" onMouseOver="P3on(3)" onMouseOut="P3off(3)">強</a><BR><BR>
Power=7 freq=7 oneshot loop=100 on=192ms off=192ms の場合<BR>
<a href="JavaScript:void(0);" onMouseOver="P3on(4)" onMouseOut="P3off(4)">最強?</a><BR><BR>
</font>
</center>
</body>
</html>
このソ〜スをコピペすると・・・こうなります♪
|