Forum'da ara:
Ara


Yazar Mesaj
Mesaj22.08.2007, 23:48 (UTC)    
Mesaj konusu: YARDIM::::SITENIN ORTASINA NASIL MENU EKLEYEBILIRIZ??

YARDIMCI OLURSANIZ SEVINIRIM
Mesaj23.08.2007, 05:54 (UTC)    
Mesaj konusu: menü ve açılır pencere

menü

Kod:
<style>
BODY { font-family:verdana, arial, helvetica; font-size:70%; }
H1 { font-size:120%; font-style:italic; }

DIV#divMenuBar { background-color:#6699CC; }
TABLE#tblMenuBar TD { font-size:60%; color:white; padding:0px 5px 0px 5px; cursorefault; }
TABLE#tblMenuBar TD.MenuMadde { font-weight:bold; cursor:hand; }

DIV.clsMenu {
font-size:90%; background-color:#6699CC;
position:absolute; visibility:hidden; width:130px;
padding:5px 5px 5px 8px; border-top:1 white solid;
}
DIV.clsMenu A { text-decoration:none; color:white; font-weight:bold; }
DIV.clsMenu A:hover { color:moccasin; }

BUTTON { font-family:tahoma; font-size:100%; }
</style>

<SCRIPT LANGUAGE="Javascript">
var eOpenMenu = null;

function OpenMenu(eSrc,eMenu)
{
eMenu.style.left = eSrc.offsetLeft + divMenuBar.offsetLeft;
eMenu.style.top = divMenuBar.offsetHeight + divMenuBar.offsetTop;
eMenu.style.visibility = "visible";
eOpenMenu = eMenu;
}

function CloseMenu(eMenu)
{
eMenu.style.visibility = "hidden";
eOpenMenu = null;
}

function document.onmouseover()
{
var eSrc = window.event.srcElement;
if ("MenuMadde" == eSrc.className)
{
eSrc.style.color = "moccasin";
var eMenu = document.all[eSrc.id.replace("tdMenuBarItem","divMenu")];
if (eOpenMenu && eOpenMenu != eMenu)
{
CloseMenu(eOpenMenu);
}
if (eMenu)
{
OpenMenu(eSrc,eMenu);
}
}
else if (eOpenMenu && !eOpenMenu.contains(eSrc) && !divMenuBar.contains(eSrc))
{
CloseMenu(eOpenMenu);
}
}

function document.onmouseout()
{
var eSrc = window.event.srcElement;
if ("MenuMadde" == eSrc.className)
{
eSrc.style.color = "";
}
}

</SCRIPT>

<DIV ID="divMenuBar">
<TABLE ID="tblMenuBar" BORDER="0">
<TR>
<TD CLASS="MenuMadde" ID="tdMenuBarItem01">MENÜ MADDE 01</TD>
<TD>|</TD>
<TD CLASS="MenuMadde" ID="tdMenuBarItem02">MENÜ MADDE 02</TD>
<TD>|</TD>
<TD CLASS="MenuMadde" ID="tdMenuBarItem03">MENÜ MADDE 03</TD>
</TR>
</TABLE>
</DIV>

<DIV CLASS="clsMenu" ID="divMenu01">
<DIV CLASS="clsMenuAra"></DIV>
<DIV><A TARGET="_new" HREF="01.asp">Madde 01</A></DIV>
<DIV><A TARGET="_new" HREF="02.asp">Madde 02</A></DIV>
<DIV><A TARGET="_new" HREF="03.asp">Madde 03</A></DIV>
<DIV><A TARGET="_new" HREF="04.asp">Madde 04</A></DIV>
<DIV><A TARGET="_new" HREF="05.asp">Madde 05</A></DIV>
</DIV>

<DIV CLASS="clsMenu" ID="divMenu02">
<DIV CLASS="clsMenuAra"></DIV>
<DIV><A TARGET="_new" HREF="11.asp">Madde 01</A></DIV>
<DIV><A TARGET="_new" HREF="12.asp">Madde 02</A></DIV>
<DIV><A TARGET="_new" HREF="13.asp">Madde 03</A></DIV>
<DIV><A TARGET="_new" HREF="14.asp">Madde 04</A></DIV>
<DIV><A TARGET="_new" HREF="15.asp">Madde 05</A></DIV>
</DIV>

<DIV CLASS="clsMenu" ID="divMenu03">
<DIV CLASS="clsMenuAra"></DIV>
<DIV><A TARGET="_new" HREF="21.asp">Madde 01</A></DIV>
<DIV><A TARGET="_new" HREF="22.asp">Madde 02</A></DIV>
<DIV><A TARGET="_new" HREF="23.asp">Madde 03</A></DIV>
<DIV><A TARGET="_new" HREF="24.asp">Madde 04</A></DIV>
<DIV><A TARGET="_new" HREF="25.asp">Madde 05</A></DIV>
</DIV>



açılır pencere
Kod:
<html>

<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
<title>Link Menüsü</title>
</head>

<body>
<script language="JavaScript">
<!--
function go() {
if (document.selecter.select1.options[document.selecter.select1.selectedIndex].value != "none") {
location = document.selecter.select1.options[document.selecter.select1.selectedIndex].value
}
}
//-->
</script><script
language="JavaScript"><!--
document.write('<form name="selecter"><select name="select1" size="1">');
document.write('<option value="none">Seçiminizi yapınız');
document.write('<option value="none">_______________');

document.write('<option value="mailto:alnumel( at )hotmail">İRTİBAT');
document.write('<option value="http://alnumel.page.tl/Renkpaleti.htm">SIK KULANILANLARA EKLE');

document.write('<option value="http://alnumel.page.tl/HtmlKodlar/index.htm">HTMLKOD-FORUM');
document.write('<option value="http://alnumel.page.tl/jawascript.htm">JAVASCRİPT ARŞİVİ ');
document.write('<option value="http://alnumel.page.tl/Mausekod.htm">MAUSE KODLARI');
document.write('<option value="http://alnumel.page.tl/arkafontlar.htm">ARKAFONTLAR');
document.write('<option value="http://alnumel.page.tl/Renkpaleti.htm">RENK PALETİ');

document.write('</select>');
document.write('<INPUT TYPE="button" VALUE="Sayfaya Git" onclick="go()">');
document.write('</form>');
// --></script>
</body>

</html>


NOT: kodları kendine göre düzenlemelisin Wink

Mesaj23.08.2007, 09:38 (UTC)    
Mesaj konusu: HAYALETASHY YAZISINI YUKARIYA NASIL YAZDIN KARDEŞ Bİ ZAHMET

HAYALETASHY YAZISINI YUKARIYA NASIL YAZDIN KARDEŞ Bİ ZAHMET YARDIMCI OLURMUSUN ACİLEN LAZIM BEKLİYORUM. İYİ ÇALIŞMALAR KOLAY GELSİN AYRINTILI Bİ ŞEKİLDE ANLATIRSAN SEVİNİRİM...
Mesaj23.08.2007, 12:25 (UTC)    
Mesaj konusu:

altunkayakoyu::::HAYALETASHY YAZISINI YUKARIYA NASIL YAZDIN KARDEŞ Bİ ZAHMET YARDIMCI OLURMUSUN ACİLEN LAZIM BEKLİYORUM. İYİ ÇALIŞMALAR KOLAY GELSİN AYRINTILI Bİ ŞEKİLDE ANLATIRSAN SEVİNİRİM...


arkadasım sıte gırıs yapıyorsun ondan sonra ayarlar dıyorsun acılan sayfanın en ust bolumunde sıte ısmı yazan yere ıstedıgını yazıyon ve usttekı yazıyı yazmıs oluyorsun
Mesaj22.09.2009, 21:36 (UTC)    
Mesaj konusu:

EYVALLAH KARDEŞ SAGOL SİTENİ DOLAŞTIMGERÇEKTEN İYİ BİR SİTE ATATÜRK RESMİNİ NASIL YERLEŞTİRDİN KOD FELANMI KOYUYORUZ YARDIMCI OLURSANIZ SEVİNİRİM..EYVALHH... Wink
Önceki mesajları göster:   


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