Merhaba Misafir

Resim

sağ tuş menüsü

BBCode paylaşımı

Yetkili: Kategori Sorumlusu

Forum kuralları
Lüfen bu bölümde sadece Geliştirdiğiniz BBCode'ları paylaşınız.

Bu bölüm BBcode istek bölümü değildir. İsteklerinizi bbcode-istek-f71/ kullanınız

Bu kurala uymayanlar cezalandırılacaktır

sağ tuş menüsü

İleti salihrocker 24 Şub 2008 18:03

sayfalarınızda sağtuş menüsü kullanmak istiyorsanzı aşağıdaki kodları BBCode'lar bölümüne yerleştirin

BBCode kullanımı
Kod: Tümünü seç
[menu][/menu]


HTML yenileme
Kod: Tümünü seç
<!--- KAYNAK: http://www.egitimordusu.forumlari.net --->
<script language="javaScript">
<!-- realMenu v1.27 copyright © jordan neill 2000 http://javascriptkit.com

menuItems = new Array();
menuItemNum = 0;

function addMenuItem(text, url, img){
  if(img) menuItems[menuItemNum] = new Array(text, url, img);
  else if(text) menuItems[menuItemNum] = new Array(text, url);
  else menuItems[menuItemNum] = new Array();
  menuItemNum++;
}
     //AYARLAR BAŞLANGICI
menuWidth = 160; //menu width /menü uzunluğu
menuHeight = 130; //menu height /menü yüksekliği
menuDelay = 50; //delay before menu appears /menü çıkış zamanı
menuSpeed = 75; //speed which menu appears (lower=faster) /menü açılış hızı
menuOffset = 2; //offset of menu from mouse pointer /menünün mouse imlecine olan uzaklığı

addMenuItem("<center>Forum Anasayfa</center>","http://www.egitimordusu.forumlari.net");
addMenuItem();
addMenuItem("Kullanıcı Kontrol Paneli","http://egitimordusu.forumlari.net/ucp.php");
addMenuItem("Forum İçinde Ara","http://egitimordusu.forumlari.net/search.php");
addMenuItem("Mesajlar","http://egitimordusu.forumlari.net/ucp.php?i=pm&folder=inbox");
addMenuItem("Arkasaşlar","http://egitimordusu.forumlari.net/ucp.php?i=168");
addMenuItem("Düşmanlar","http://egitimordusu.forumlari.net/ucp.php?i=zebra&mode=foes");
addMenuItem("Kullanıcı Grupları","http://egitimordusu.forumlari.net/ucp.php?i=167");

  //AYARLAR SONU
 
///////////////////////////////////////////////////////////////////////////////
// do not edit the code below, it is required for the menu to work correctly
///////////////////////////////////////////////////////////////////////////////


if(window.navigator.appName == "Microsoft Internet Explorer" && window.navigator.appVersion.substring(window.navigator.appVersion.indexOf("MSIE") + 5, window.navigator.appVersion.indexOf("MSIE") + 8) >= 5.5)
  isIe = 1;
else
  isIe = 0;

if(isIe){
  menuContent = '<table id="rightMenu" width="0" height="0" cellspacing="0" cellpadding="0" style="font:menu;color:menutext;"><tr height="1"><td style="background:threedlightshadow" colspan="4"></td><td style="background:threeddarkshadow"></td></tr><tr height="1"><td style="background:threedlightshadow"></td><td style="background:threedhighlight" colspan="2"></td><td style="background:threedshadow"></td><td style="background:threeddarkshadow"></td></tr><tr height="10"><td style="background:threedlightshadow"></td><td style="background:threedhighlight"></td><td style="background:threedface"><table cellspacing="0" cellpadding="0" nowrap style="font:menu;color:menutext;cursor:default;">';
  for(m=0;m<menuItems.length;m++){
   if(menuItems[m][0] && menuItems[m][2])
    menuContent += '<tr height="17" onMouseOver="this.style.background=\'highlight\';this.style.color=\'highlighttext\';" onMouseOut="this.style.background=\'threedface\';this.style.color=\'menutext\';" onClick="parent.window.location.href=\'' + menuItems[m][1] + '\'"><td style="background:threedface" width="1" nowrap></td><td width="21" nowrap><img src="' + menuItems[m][2] + '"></td><td nowrap>' + menuItems[m][0] + '</td><td width="21" nowrap></td><td style="background:threedface" width="1" nowrap></td></tr>';
   else if(menuItems[m][0])
    menuContent += '<tr height="17" onMouseOver="this.style.background=\'highlight\';this.style.color=\'highlighttext\';" onMouseOut="this.style.background=\'threedface\';this.style.color=\'menutext\';" onClick="parent.window.location.href=\'' + menuItems[m][1] + '\'"><td style="background:threedface" width="1" nowrap></td><td width="21" nowrap></td><td nowrap>' + menuItems[m][0] + '</td><td width="21" nowrap></td><td style="background:threedface" width="1" nowrap></td></tr>';
   else
    menuContent += '<tr><td colspan="5" height="4"></td></tr><tr><td colspan="5"><table cellspacing="0"><tr><td width="2" height="1"></td><td width="0" height="1" style="background:threedshadow"></td><td width="2" height="1"></td></tr><tr><td width="2" height="1"></td><td width="100%" height="1" style="background:threedhighlight"></td><td width="2" height="1"></td></tr></table></td></tr><tr><td colspan="5" height="3"></td></tr>';
  }
  menuContent += '</table></td><td style="background:threedshadow"></td><td style="background:threeddarkshadow"></td></tr><tr height="1"><td style="background:threedlightshadow"></td><td style="background:threedhighlight"></td><td style="background:threedface"></td><td style="background:threedshadow"></td><td style="background:threeddarkshadow"></td></tr><tr height="1"><td style="background:threedlightshadow"></td><td style="background:threedshadow" colspan="3"></td><td style="background:threeddarkshadow"></td></tr><tr height="1"><td style="background:threeddarkshadow" colspan="5"></td></tr></table>';

  menuPopup = window.createPopup();
  menuPopup.document.body.innerHTML = menuContent;
}

function showMenu(){
  menuXPos = event.clientX + menuOffset;
  menuYPos = event.clientY + menuOffset;

  menuXIncrement = menuWidth / menuSpeed;
  menuYIncrement = menuHeight / menuSpeed;

  menuTimer = setTimeout("openMenu(0,0)", menuDelay);

  return false;
}


function openMenu(height, width){
  iHeight = height;
  iWidth = width;

  menuPopup.show(menuXPos, menuYPos, iWidth, iHeight, document.body);

  if(iHeight < menuHeight)
   menuTimer = setTimeout("openMenu(iHeight + menuYIncrement, iWidth + menuXIncrement)", 1);
  else
   clearTimeout(menuTimer);
}


if(isIe) document.oncontextmenu = showMenu;


//-->
</script>
<!--- KAYNAK: http://www.egitimordusu.forumlari.net --->


kodları kendi siteme göre yazdım, değiştirmeyi unutmayın.

artık siteme üye olursunuz...
http://www.egitimordusu.forumlari.net
salihrocker
 
İleti: 136
Kayıt: 12 Oca 2007 18:44
Konum: EĞİTİM ORDUSU
Forum Adresiniz: egitimordusu

Re: sağ tuş menüsü

İleti Mr.$@W 24 Şub 2008 18:43

forum sıtesınde sag tus yasagının ne ısı var kı?:s
SAGOPA 10 YAŞINDA
Kullanıcı avatarı
Mr.$@W
 
İleti: 84
Kayıt: 01 Şub 2008 15:34
Konum: SagopaRapFan.ForumLari.NeT
Forum Adresiniz: www.sagoparapfan.for

Re: sağ tuş menüsü

İleti selman 10 Mar 2008 00:15

bu nedir bana açarmısınız
selman
 
İleti: 2
Kayıt: 06 Mar 2008 21:24
Forum Adresiniz: islamimucadele

Re: sağ tuş menüsü

İleti salihrocker 12 Mar 2008 12:48

bu kodları BBCode bölümüne ekledikten sonra kullandığınız sayfalarsa sağ tıklandığında kendi istediğiniz aaraçlardan oluşam bir menü karşınıza çıkar...
salihrocker
 
İleti: 136
Kayıt: 12 Oca 2007 18:44
Konum: EĞİTİM ORDUSU
Forum Adresiniz: egitimordusu


BBCode Bölümü

Kimler çevrimiçi

Bu forumu görüntüleyenler: Google [Bot] ve 1 misafir