Statü Bar'da Saat ; PHP Kod: Kodu kopyalamak için üzerine çift tıklayın!
<script Language="JavaScript">
<!-- Script kHz
// Orjinal : KHaZa^DuM
var timerID = null;
var timerRunning = false;
function stopclock (){
if(timerRunning)
clearTimeout(timerID);
timerRunning = false;
}
function showtime () {
var now = new Date();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds()
var timeValue = "" + ((hours >12) ? hours -12 :hours)
timeValue += ((minutes < 10) ? ":0" : ":") + minutes
timeValue += ((seconds < 10) ? ":0" : ":") + seconds
timeValue += (hours >= 12) ? " P.M." : " A.M."
window.status = timeValue;
// you could replace the above with this
// and have a clock on the status bar:
//
timerID = setTimeout("showtime()",1000);
timerRunning = true;
}
function startclock () {
// Make sure the clock is stopped
stopclock();
showtime();
}
// -->
</script>
Statü Bar'da Typing Yazı ;
PHP Kod: Kodu kopyalamak için üzerine çift tıklayın!
<SCRIPT language="JavaScript">
<!-- Script kHz
var current = 0
var x = 0
var speed = 100
var speed2 = 100
function initArray(n) {
this.length = n;
for (var i =1; i <= n; i++) {
this[i] = ' '
}
}
typ = new initArray(4)
typ[0]="Ilk Yaziniz"
typ[1]="Ikinci Yaziniz"
typ[2]="Ucuncu Yaziniz"
typ[3]="Dorduncu Yaziniz"
function typewrite() {
var m = typ[current]
window.status = m.substring(0, x++) + ""
if (x == m.length + 1) {
x = 0
current++
if (current > typ.length - 1) {
current = 0
}
setTimeout("typewrite()", speed2)
}
else {
setTimeout("typewrite()", speed)
}
}
typewrite()
// -->
</SCRIPT>
Mail Gönder Butonu ;
PHP Kod: Kodu kopyalamak için üzerine çift tıklayın!
<form>
<input type="button" value="Email Me"
onClick="location.href='mailto:
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
'">
</form>
"Kaynağı Görüntüle" Butonu ;
PHP Kod: Kodu kopyalamak için üzerine çift tıklayın!
<form>
<input type="button" value="View Source"
onClick= 'window.location = "view-source:" + window.location.href' >
</form>
Zaman ;
PHP Kod: Kodu kopyalamak için üzerine çift tıklayın!
<SCRIPT language=Javascript>
<!-- Script courtesy of
var today_date= new Date()
var month=today_date.getMonth()
var today=today_date.getDate()
var year=today_date.getYear()
var months = new Array(
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December");
// -->
</SCRIPT>
[box=kHz]Lütfen Bu JS yi <Head></Head> tagları arasında kullanın...[/box]
Sağ Tuş ;
PHP Kod: Kodu kopyalamak için üzerine çift tıklayın!
<SCRIPT language="JavaScript">
<!-- Script kHz
var message="Yazınız...";
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->
</SCRIPT>
[box=kHz] Sağ Tuş Fonksiyonunu kapatıyor.
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir. Yazınız kısmını kendinize göre düzenleyin ..[/box]