شركة اوريجينال
هل تريد التفاعل مع هذه المساهمة؟ كل ما عليك هو إنشاء حساب جديد ببضع خطوات أو تسجيل الدخول للمتابعة.

روابط تظهر عند النقر بزر الماوس اليمين 2

3 مشترك

اذهب الى الأسفل

روابط تظهر عند النقر بزر الماوس اليمين 2 Empty روابط تظهر عند النقر بزر الماوس اليمين 2

مُساهمة من طرف 1M ThE BesT الأربعاء أبريل 06, 2011 2:12 am


روابط تظهر عند النقر بزر الماوس اليمين 2

انقر بزر الماوس الماوس اليمين







طريقة التركيب



انسخ هذا الكود و ضعه في منطقة HEAD

<script
language="javaScript">

/*****************************************
* Translated By www.star28.com/
* Visit our site at http://www.star28.com/ for more code
* This notice must stay intact for use
***********************************************/

<!--

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++;
}

menuWidth = 120; //menu width
menuHeight = 176; //menu height
menuDelay = 50; //delay before menu appears
menuSpeed = 8; //speed which menu appears (lower=faster)
menuOffset = 2; //offset of menu from mouse pointer

addMenuItem("<center>الصفحة
الرئيسية</center>","http://www.star28.com/");
addMenuItem();
addMenuItem("<p align=right>رابط رقم 1</p>","http://www");
addMenuItem("<p align=right>رابط رقم 2</p>","http://www");
addMenuItem("<p align=right>رابط رقم 3</p>","http://www");
addMenuItem();
addMenuItem("<p align=right>رابط رقم 4</p>","http://www");
addMenuItem("<p align=right>رابط رقم 5</p>","http://www");
addMenuItem("<p align=right>رابط رقم 6</p>","http://www");
addMenuItem("<p align=right>رابط رقم 7</p>","http://www");
addMenuItem("<p align=right>رابط رقم 8</p>","http://www");


///////////////////////////////////////////////////////////////////////////////

// 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>




1M ThE BesT
1M ThE BesT
є∂αяу σяιgιηαℓє
مدير ومؤسس الموقع

الْعُمْر الْعُمْر : 27
 الجنس : ذكر
الْمَشِارَكِات الْمَشِارَكِات : 11186
بلدي بلدي : الجزائر
الْنِّقَاط الْنِّقَاط : 32881
السٌّمعَة السٌّمعَة : 14
. روابط تظهر عند النقر بزر الماوس اليمين 2 111010

http://oriiginale.co.cc

الرجوع الى أعلى الصفحة اذهب الى الأسفل

روابط تظهر عند النقر بزر الماوس اليمين 2 Empty رد: روابط تظهر عند النقر بزر الماوس اليمين 2

مُساهمة من طرف Design-sasuke الأحد أبريل 10, 2011 10:29 pm

يسسسلمووو
Design-sasuke
Design-sasuke
ღ عضو ღ v I p
ღ عضو ღ v I p

الْعُمْر الْعُمْر : 32
 الجنس : ذكر
الْمَشِارَكِات الْمَشِارَكِات : 8432
بلدي بلدي : سوريا
الْنِّقَاط الْنِّقَاط : 29390
السٌّمعَة السٌّمعَة : 0
. روابط تظهر عند النقر بزر الماوس اليمين 2 111010

الرجوع الى أعلى الصفحة اذهب الى الأسفل

روابط تظهر عند النقر بزر الماوس اليمين 2 Empty رد: روابط تظهر عند النقر بزر الماوس اليمين 2

مُساهمة من طرف 1M ThE BesT الأحد أبريل 10, 2011 11:41 pm

شكرا لك على المرور اخي الكريـــــم
1M ThE BesT
1M ThE BesT
є∂αяу σяιgιηαℓє
مدير ومؤسس الموقع

الْعُمْر الْعُمْر : 27
 الجنس : ذكر
الْمَشِارَكِات الْمَشِارَكِات : 11186
بلدي بلدي : الجزائر
الْنِّقَاط الْنِّقَاط : 32881
السٌّمعَة السٌّمعَة : 14
. روابط تظهر عند النقر بزر الماوس اليمين 2 111010

http://oriiginale.co.cc

الرجوع الى أعلى الصفحة اذهب الى الأسفل

روابط تظهر عند النقر بزر الماوس اليمين 2 Empty رد: روابط تظهر عند النقر بزر الماوس اليمين 2

مُساهمة من طرف Sifou الإثنين أبريل 11, 2011 12:17 am

مشششششششكور يعطيك العافية
Sifou
Sifou
ღ عضو ღ v I p
ღ عضو ღ v I p

الْعُمْر الْعُمْر : 30
 الجنس : ذكر
الْمَشِارَكِات الْمَشِارَكِات : 4649
بلدي بلدي : الجزائر
الْنِّقَاط الْنِّقَاط : 20526
السٌّمعَة السٌّمعَة : 0
. روابط تظهر عند النقر بزر الماوس اليمين 2 441010

الرجوع الى أعلى الصفحة اذهب الى الأسفل

الرجوع الى أعلى الصفحة

- مواضيع مماثلة

 
صلاحيات هذا المنتدى:
لاتستطيع الرد على المواضيع في هذا المنتدى