[]
HTML Sayfasının Arkasına resim Koymak
Arkadaşlar aşağıda verdiğim bir html kodunun arkasına resim koyabilir miyiz. yani herhangi bir resim koysanız ben kodları veriyorum size zahmet.
<html>
<head>
<script>
var cnt=-1,tmr,spn,txt,res,h1,h2,h3;
function trim(str) {
return str.replace(/^\s+|\s+$/g,"");
}
function init(){
spn=document.getElementById('spn');
txt=document.getElementById('txt');
res=document.getElementById('res');
h1=document.getElementById('hdr1');
h2=document.getElementById('hdr2');
h3=document.getElementById('hdr3');
txt.focus();
}
function startTimer(){
if (cnt<0) {
cnt=181;
showTime();
h1.style.display='none';
h2.style.display='block';
txt.value='';
txt.focus();
}
}
function stopTimer(){
clearTimeout(tmr);
var words=trim(txt.value);
res.innerHTML='GEÇEN SÜRE: '+(180-cnt)+
'sn.<br>KELİME SAYISI: '+words.split(" ").length+
'<br>KARAKTER SAYISI: '+words.length;
if (txt.createTextRange) {
var cpy=txt.createTextRange();
cpy.execCommand("Copy");
}
cnt=0;
spn.innerHTML='';
h2.style.display='none';
h3.style.display='block';
txt.focus();
}
function clearText(){
cnt=-1;
h3.style.display='none';
h1.style.display='block';
res.innerHTML='';
txt.value='';
txt.focus();
}
function showTime(){
if(--cnt) {
spn.innerHTML='KALAN SÜRE: ' + cnt;
tmr=setTimeout('showTime()',1000);
} else {
stopTimer();
alert('Süre doldu!');
}
}
</script>
</head>
<body onload='init();'>
<div id=hdr1 style='height:40px;'>Yazmaya başlayabilirsiniz...</div>
<div id=hdr2 style='height:40px;display:none;'><input type=button value='DURDUR' onclick='stopTimer()'>
<span id=spn style='font-size:16pt'></span></div>
<div id=hdr3 style='height:40px;display:none;'><input type=button value='TEKRAR' onclick='clearText()'></div>
<textarea id=txt rows=20 cols=100 onkeydown='startTimer()'></textarea><br><br>
<span id=res></span>
</body>
</html>
<html>
<head>
<script>
var cnt=-1,tmr,spn,txt,res,h1,h2,h3;
function trim(str) {
return str.replace(/^\s+|\s+$/g,"");
}
function init(){
spn=document.getElementById('spn');
txt=document.getElementById('txt');
res=document.getElementById('res');
h1=document.getElementById('hdr1');
h2=document.getElementById('hdr2');
h3=document.getElementById('hdr3');
txt.focus();
}
function startTimer(){
if (cnt<0) {
cnt=181;
showTime();
h1.style.display='none';
h2.style.display='block';
txt.value='';
txt.focus();
}
}
function stopTimer(){
clearTimeout(tmr);
var words=trim(txt.value);
res.innerHTML='GEÇEN SÜRE: '+(180-cnt)+
'sn.<br>KELİME SAYISI: '+words.split(" ").length+
'<br>KARAKTER SAYISI: '+words.length;
if (txt.createTextRange) {
var cpy=txt.createTextRange();
cpy.execCommand("Copy");
}
cnt=0;
spn.innerHTML='';
h2.style.display='none';
h3.style.display='block';
txt.focus();
}
function clearText(){
cnt=-1;
h3.style.display='none';
h1.style.display='block';
res.innerHTML='';
txt.value='';
txt.focus();
}
function showTime(){
if(--cnt) {
spn.innerHTML='KALAN SÜRE: ' + cnt;
tmr=setTimeout('showTime()',1000);
} else {
stopTimer();
alert('Süre doldu!');
}
}
</script>
</head>
<body onload='init();'>
<div id=hdr1 style='height:40px;'>Yazmaya başlayabilirsiniz...</div>
<div id=hdr2 style='height:40px;display:none;'><input type=button value='DURDUR' onclick='stopTimer()'>
<span id=spn style='font-size:16pt'></span></div>
<div id=hdr3 style='height:40px;display:none;'><input type=button value='TEKRAR' onclick='clearText()'></div>
<textarea id=txt rows=20 cols=100 onkeydown='startTimer()'></textarea><br><br>
<span id=res></span>
</body>
</html>
oldu dostum. son bir şey isteyebilir miyim.
arkasına müzik koymam gerekiyor.
arkasına müzik koymam gerekiyor.
- komutanlogar (06.02.12 21:38:59)
1