Yazar |
Mesaj |
-
kurandini
Aktif Üye
|
16.02.2009, 12:11 (UTC) Mesaj konusu: (Bilgi Araç Çubuğu Kodu)nu Yazabilir misiniz? |
|
|
Arkadaşlar bu kodu hackerfriend adresinden buldum ama indirince açmadı, o nedenle oraya yönlendirmeyin.
Kodu verdikten sonra nereye yapıştırılacağını ve nasıl kullanılacağını anlatınız, çünkü sadece kod bir işime yaramaz.
Kontrolsüz güç güç değildir:) |
|
↑
|
|
|
-
kurandini
Aktif Üye
|
16.02.2009, 12:19 (UTC) Mesaj konusu: |
|
|
tabi bir durum daha var, ben o çubuğa tıklanıp başka bir sayfaya yönlendirilmesini istiyorum. Yani çubuk bir konu başlığı görevi göecek... |
|
↑
|
|
|
-
webdetay
Bedava-Sitem Bağımlısı
Konum: Kocaeli
|
16.02.2009, 12:30 (UTC) Mesaj konusu: |
|
|
Kodu istediğiniz gibi düzenleyebilirsiniz.
Eklenecek;
Sitene Giriş > Tasarım Ayarları > Gelişmiş Tasarımlar > Tasarımın Üzerindeki Yazı Yapıştır ^^
Kod: <style type="text/css">
<!--
#informationbar{
position: fixed;
left: 0;
width: 100%;
text-indent: 0px;
padding: 5px 0;
background-color:#000000;
border-bottom: 0px solid black;
font: bold 14px Tahoma;
}
* html #informationbar{
position: absolute;
width: expression(document.compatMode=="CSS1Compat"? document.documentElement.clientWidth+"px" : body.clientWidth+"px");
}
-->
</style>
<script type="text/javascript">
function informationbar(){
this.displayfreq="always"
this.content='<a href="javascript:informationbar.close()"><img src="http://img.webme.com/pic/p/piriketseverler/remove.png" style="width: 16px; height: 16px; 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">
var infobar=new informationbar()
infobar.setContent(' Web Bilginine Hoşgeldiniz!')
//infobar.setfrequency('session') //Uncomment this line to set information bar to only display once per browser session!
infobar.initialize()
</script> ______________ |
|
↑
|
|
|
-
pussycatdollstr
Acemi Üye
|
16.02.2009, 12:41 (UTC) Mesaj konusu: |
|
|
kurandini yazmış: tabi bir durum daha var, ben o çubuğa tıklanıp başka bir sayfaya yönlendirilmesini istiyorum. Yani çubuk bir konu başlığı görevi göecek... |
|
↑
|
|
|
-
naberin
Acemi Üye
|
16.02.2009, 12:46 (UTC) Mesaj konusu: |
|
|
Verdiğiniz adres açılmıyor. Lütfen hazırladığım linki kod içerisinde nereye yapıştıracağımı söylerseniz koda dahil ediyim... |
|
↑
|
|
|
-
webkoloji
Aktif Üye
Konum: Programcı
|
16.02.2009, 12:52 (UTC) Mesaj konusu: |
|
|
naberin yazmış: Verdiğiniz adres açılmıyor. Lütfen hazırladığım linki kod içerisinde nereye yapıştıracağımı söylerseniz koda dahil ediyim...
o verdiği adresin yardımla hiçbir alakası yok, sadece amacı bilgisayarına trojen bulaştırmak.
forum başıboş kalınca bu durumlar gerçekleşti, malesef... |
|
↑
|
|
|
-
kurandini
Aktif Üye
|
16.02.2009, 12:59 (UTC) Mesaj konusu: |
|
|
Arkadaşlar ben hackerfriend sitesindeki gibi bilgi çubuğuna tıklayınca sayfaya yönlendiren bir kod istiyorum... |
|
↑
|
|
|
-
webkoloji
Aktif Üye
Konum: Programcı
|
16.02.2009, 13:09 (UTC) Mesaj konusu: |
|
|
Kod: <style type="text/css">
#informationbar{
position: fixed;
left: 0;
width: 100%;
text-align: center;
padding: 5px 0;
background-color: #C6F2FB;
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
***********************************************/
function informationbar(){
this.displayfreq="always"
this.content='<a href="javascript:informationbar.close()"><img src="http://img.webme.com/pic/h/hackerfriend/xpclose.png" style="width: 21px; height: 21px; 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('<a href="URL">deneme</a>')
//infobar.setfrequency('session') //Uncomment this line to set information bar to only display once per browser session!
infobar.initialize()
</script> |
|
↑
|
|
|
|