Forum'da ara:
Ara


Yazar Mesaj
Mesaj25.09.2008, 09:20 (UTC)    
Mesaj konusu: Kodda usta olanlardan lütfen yardım bekliyorum

arkadaşlar ben bir arama motoru yapacağım ama bazı ekstra kodlara ihtiyacım var mesela

http://www.sahanca.tr.gg/Sitene-Spor-Haberleri-Ekle.htm?PHPSESSID=10d7...
bu sitedeki en üstte aktif olan hiç hareket etmeyen şeyin kodunu istiyorum ama bulamıyorum lütfen yardımlarınızı bekliyorum
Mesaj25.09.2008, 09:29 (UTC)    
Mesaj konusu:

kırmızı yazılı yere kodunuzu ekleyiniz.

Alıntı:
<style type="text/css">

#informationbar{
position: fixed;
left: 0;
width: 100%;
text-indent: 5px;
padding: 5px 0;
background-color: Yellow;
border-bottom: 1px solid black;
font: bold 12px Verdana;
}

* html #informationbar{ /*IE6 hack*/
position: absolute;
width: expression(document.compatMode=="CSS1Compat"? document.documentElement.clientWidth+"px" : body.clientWidth+"px");
}

</style>

<script type="text/javascript">

/***********************************************

* Animated Information Bar- by JavaScript Kit (www.javascriptkit.com)
* This notice must stay intact for usage
* Visit JavaScript Kit at http://www.javascriptkit.com/ for this script and 100s more
* Bu kod hackerfriend.ile.biz sitesinin Siteniz İçin bölümünden indirilmiştir.
***********************************************/

function informationbar(){
this.displayfreq="always"
this.content='<a href="javascript:informationbar.close()"><img src="http://80.190.202.79/pic/h/hackerfriend/close.gif" style="width: 14px; height: 14px; float: right; border: 0; margin-right: 5px" /></a>'
}

informationbar.prototype.setContent=function(data){
this.content=this.content+data
document.write('<div id="informationbar" style="top: -500px">'+this.content+'</div>')
}

informationbar.prototype.animatetoview=function(){
var barinstance=this
if (parseInt(this.barref.style.top)<0){
this.barref.style.top=parseInt(this.barref.style.top)+5+"px"
setTimeout(function(){barinstance.animatetoview()}, 50)
}
else{
if (document.all && !window.XMLHttpRequest)
this.barref.style.setExpression("top", 'document.compatMode=="CSS1Compat"? document.documentElement.scrollTop+"px" : body.scrollTop+"px"')
else
this.barref.style.top=0
}
}

informationbar.close=function(){
document.getElementById("informationbar").style.display="none"
if (this.displayfreq=="session")
document.cookie="infobarshown=1;path=/"
}

informationbar.prototype.setfrequency=function(type){
this.displayfreq=type
}

informationbar.prototype.initialize=function(){
if (this.displayfreq=="session" && document.cookie.indexOf("infobarshown")==-1 || this.displayfreq=="always"){
this.barref=document.getElementById("informationbar")
this.barheight=parseInt(this.barref.offsetHeight)
this.barref.style.top=this.barheight*(-1)+"px"
this.animatetoview()
}
}

window.onunload=function(){
this.barref=null
}

</script>


<script type="text/javascript">
<!--Invocation code-->

var infobar=new informationbar()
infobar.setContent(' KOD BURAYA ')
//infobar.setfrequency('session') //Uncomment this line to set information bar to only display once per browser session!
infobar.initialize()

</script>

______________
Ne insanların insanlığına inanabildim,
ne de hayvanların insanlar kadar hayvanlaştığına... (Sokrates Mert) Razz
Mesaj26.09.2008, 05:57 (UTC)    
Mesaj konusu:

http://sporwebarama.tr.gg/

bu sitedeki sağ yanda sayfayı aşağıda indirsen yukarıda çıkarsan her zaman yanından gelen reklam alanı var onun kodunu bulamıyorum yardım edecek varsa çok sevinirim.
Mesaj26.09.2008, 06:12 (UTC)    
Mesaj konusu:

gunselegitim yazmış:
http://sporwebarama.tr.gg/

bu sitedeki sağ yanda sayfayı aşağıda indirsen yukarıda çıkarsan her zaman yanından gelen reklam alanı var onun kodunu bulamıyorum yardım edecek varsa çok sevinirim.



SAĞ TARAFTA KAYAN REKLAM ALANI KODU

Kod:
<!-- http://www.karayizbiz.tr.gg kod baslangici -->
<style type="text/css">

#topbar{
position:absolute;
border: 0px solid black;
padding: 0px;
background-color: yellow;
width: 100px;
visibility: hidden;
z-index: 0;
}

</style>

<script type="text/javascript">
var persistclose=1 //set to 0 or 1. 1 means once the bar is manually closed, it will remain closed for browser session
var startX = 10 //set x offset of bar in pixels
var startY = 5 //set y offset of bar in pixels
var verticalpos="fromtop" //enter "fromtop" or "frombottom"

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function get_cookie(Name) {
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) {
offset += search.length
end = document.cookie.indexOf(";", offset);
if (end == -1) end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}

function closebar(){
if (persistclose)
document.getElementById("topbar").style.visibility="hidden"
}

function staticbar(){
barheight=document.getElementById("topbar").offsetHeight
var ns = (navigator.appName.indexOf("Netscape") != -1) || window.opera;
var d = document;
function ml(id){
var el=d.getElementById(id);
if (!persistclose || persistclose && get_cookie("remainclosed")=="")
el.style.visibility="visible"
if(d.layers)el.style=el;
el.sP=function(x,y){this.style.right=x+"px";this.style.top=y+"px";};
el.x = startX;
if (verticalpos=="fromtop")
el.y = startY;
else{
el.y = ns ? pageYOffset + innerHeight : iecompattest().scrollTop + iecompattest().clientHeight;
el.y -= startY;
}
return el;
}
window.stayTopright=function(){
if (verticalpos=="fromtop"){
var pY = ns ? pageYOffset : iecompattest().scrollTop;
ftlObj.y += (pY + startY - ftlObj.y)/8;
}
else{
var pY = ns ? pageYOffset + innerHeight - barheight: iecompattest().scrollTop + iecompattest().clientHeight - barheight;
ftlObj.y += (pY - startY - ftlObj.y)/8;
}
ftlObj.sP(ftlObj.x, ftlObj.y);
setTimeout("stayTopright()", 0);
}
ftlObj = ml("topbar");
stayTopright();
}

if (window.addEventListener)
window.addEventListener("load", staticbar, false)
else if (window.attachEvent)
window.attachEvent("onload", staticbar)
else if (document.getElementById)
window.onload=staticbar
</script>




<div id="topbar">
<a href="javascript:;" onclick="closebar()"><b>Reklamı Kapat</b></a>
BURAYA REKLAM KODUNUZU YAPIŞTIRINIZ


</div>

<!--http://www.karayizbiz.tr.gg kod bitisi-->

______________
Mesaj26.09.2008, 06:17 (UTC)    
Mesaj konusu:

İKİNİZEDE ÇOK TEŞEKKÜR EDERİM YARDIMLARINIZ İÇİN

BAŞARILARINIZIN DEVAMINI DİLERİM.
Önceki mesajları göster:   


Powered by phpBB © 2001, 2005 phpBB Group
Türkçe Çeviri: phpBB Türkiye & Erdem Çorapçıoğlu