Tech & Tip
1. RSS พยากรณ์อากาศ
นำโค้ดดังต่อไปนี้ไปวางยัง Body หรือส่วนที่ต้องการให้แสดงผล
<iframe src="http://www.tmd.go.th/daily_forecast_forweb.php" width="180" height="260" scrolling="no" frameborder=0></iframe>
2. การทำปุ่ม Share ของ Facebook ลงสู่เว็บไซต์
นำโค้ดดังต่อไปนี้ไปวางยัง Body หรือส่วนที่ต้องการให้แสดงผล
<a name=”fb_share” type=”button_count” href=”http://www.facebook.com/sharer.php”>Share</a>
<script src=”http://static.ak.fbcdn.net/connect.php/js/FB.Share” type=”text/javascript”></script>
3. ใช้ MOUSE ชี้ที่ LINK แล้ว CURSOR เปลี่ยนแบบ
นำโค้ดดังต่อไปนี้ไปวางยัง Body
hand,crosshair,text,wait,move,help,n-resize,s-resize,e-resize,w-resize,ne-resize,nw-resize,se-resize,sw- resize--->
<a href="http://www.yourlink.com" style="cursor:move">ข้อความลิ้งก์</a>
สีแดง คือ ลิ้งก์ของเคอร์เซอร์
สีฟ้า คือ รูปแบบของเคอร์เซอร์
สีเหลือง คือ ข้อความลิ้งก์
4. บอกเวลาแบบไทยๆ
นำโค้ดต่อไปนี้ไปวางไว้ที่ส่วน Head
<script language=Javascript>
function dateTime() {
var days = new Array("วันอาทิตย์ที่","วันจันทร์ที่","วันอังคารที่","วันพุทธที่",
"วันพฤหัสบดีที่","วันศุกร์ที่","วันเสาร์ที่")
var month = new Array("มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน",
"กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤษจิกายน","ธันวาคม")
var year= new Array("ชวด","ฉลู","ขาล","เถาะ","มะโรง","มะเส็ง","มะเมีย","มะแม","วอก","ระกา","จอ","กุล")
var now = new Date()
var result = days[now.getDay()]+" "
var add1=1900
var add2=add1+543
/* result += now.toLocaleString() */
result += now.getDate()
result += " "+month[now.getMonth()]+" พ.ศ. "
if(now.getYear())
{add1=2;add2=add1+541}
result += now.getYear()+add2
result += " ปี"+year[(now.getYear()+add2+5)%12]
result += " เวลา "+now.getHours()+" นาฬิกา "
result += now.getMinutes()+" นาที"
return result
}
function timeupdate(){
document.timef.timebox.value=dateTime()
setTimeout("timeupdate()",1000)
}
</script>
นำโค้ดต่อไปนี้ไปวางไว้ที่ส่วน Body หรือส่วนที่ต้องการให้แสดงผลบนเว็บไซต์
<form name=timef>
<input type="text" name="timebox" size=60>
</form>
และเพิ่มโค้ดต่อไปนี้ลงในส่วน Body
<body onload="timeupdate()">
ไม่มีความคิดเห็น:
แสดงความคิดเห็น