คืนค่าการตั้งค่าทั้งหมด
คุณแน่ใจว่าต้องการคืนค่าการตั้งค่าทั้งหมด ?
ลำดับตอนที่ #2 : โค้ด
-status<script>
<!-- Hide from old browsers
message = "พิมพ์ข้อความที่ 1 ^" +
"พิมพ์ข้อความที่ 2 ^" +
"พิมพ์ข้อความที่ 3 ^" +
"พิมพ์ข้อความที่ 4 ^" +
"พิมพ์ข้อความที่ 5 ^" +
"^"
scrollSpeed = 25
lineDelay = 1500
// Do not change the text below //
txt = ""
function scrollText(pos) {
if (message.charAt(pos) != '^') {
txt = txt + message.charAt(pos)
status = txt
pauze = scrollSpeed
}
else {
pauze = lineDelay
txt = ""
if (pos == message.length-1) pos = -1
}
pos++
setTimeout("scrollText('"+pos+"')",pauze)
}
// Unhide -->
scrollText(0)
</script>bar-
ข้างบนนะ เป็นโค้ดข้อความวิ่งข้างล่างอ่ะ
-
b<style>
/*ส่วนของ Body ใส่ Bg ได้*/
body{
margin:0px;
background:url(Urlรูป); /* เปลี่ยน url เอง*/
background-attachment:fixed;
}
</style>g-
อันนี้เป็นโค้ดใส่บีจี
<script language="JavaScript"> function loadalert () {alert(" เปลี่ยนตรงนี้") } loadalert() </script>
ข้อความต้อนรับ
<Script Language="VBScript"> Sub Window_onUnLoad() alert("ข้อความ") End Sub </Script>
ข้อความลา
<script language="JavaScript1.2">
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
ห้ามลากแถบดำ
<script language=JavaScript>
<!--
var message="Function Disabled!";
///////////////////////////////////
function clickIE() {if (document.all) {alert(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {alert(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
// -->
</script>
คลิกขวาแล้วไม่มีอะไรเกิดขึ้น
ความคิดเห็น