1. sayfa
DH forumlarında vakit geçirmekten keyif alıyor gibisin ancak giriş yapmadığını görüyoruz. Üye olduğunda özel mesaj gönderebilir, beğendiğin konuları favorilerine ekleyip takibe alabilir ve daha önce gezdiğin konulara hızlıca erişebilirsin.
$(".open-submenu").click(function(){ if ($(this).hasClass('active')) { // açık menüye tekrar tıklanırsa kapat $(this).removeClass("active"); $(this).next("ul").slideUp(); $(this).children(".arrow").removeClass("up"); } else { // açık menüyü kapat $(this).closest('.menu').find('.open-submenu').removeClass("active"); $(this).closest('.menu').find('.open-submenu').next("ul").slideUp(); $(this).closest('.menu').find('.open-submenu').children(".arrow").removeClass("up"); $(this).toggleClass("active"); $(this).next("ul").slideDown(); $(this).children(".arrow").addClass("up"); } });
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <style> .menu ul li ul {display: none;} </style> <body> <nav> <div class="navbar clear"> <a href="" class="logo" ></a> <div class="menu-toggle"><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></div> <div class="menu"> <ul> <li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121354892&url=" data-href="">menu 1</a></li> <li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121354892&url=" data-href="">menu 2</a></li> <li> <span class="open-submenu">menu 3 <span class="arrow down"></span></span> <ul> <li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121354892&url=" data-href="">almenupont 1</a></li> <li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121354892&url=" data-href="">almenupont 2</a></li> <li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121354892&url=" data-href="">almenupont 3</a></li> <li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121354892&url=" data-href="">almenupont 4</a></li> </ul> </li> <li> <span class="open-submenu">menu 3 <span class="arrow down"></span></span> <ul> <li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121354892&url=" data-href="">almenupont 1</a></li> <li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121354892&url=" data-href="">almenupont 2</a></li> <li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121354892&url=" data-href="">almenupont 3</a></li> <li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121354892&url=" data-href="">almenupont 4</a></li> </ul> </li> <li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121354892&url=" data-href="">menu 4</a></li> </ul> </div> </div> </nav> <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> <script> var menu = $(".menu"); $(window).resize(function(){ $(".menu-toggle").removeClass("active"); if($(window).innerWidth() > 600){ menu.show(); } else { menu.hide(); } }); $(".menu-toggle").click(function(){ $(this).toggleClass("active"); menu.slideToggle(); }) $(".open-submenu").click(function(){ if ($(this).hasClass('active')) { // açık menüye tekrar tıklanırsa kapat $(this).removeClass("active"); $(this).next("ul").slideUp(); $(this).children(".arrow").removeClass("up"); } else { // açık menüyü kapat $(this).closest('.menu').find('.open-submenu').removeClass("active"); $(this).closest('.menu').find('.open-submenu').next("ul").slideUp(); $(this).closest('.menu').find('.open-submenu').children(".arrow").removeClass("up"); $(this).toggleClass("active"); $(this).next("ul").slideDown(); $(this).children(".arrow").addClass("up"); } }); </script> </body> </html>
JAVA KODLARI
<script>
$(document).ready(function() {
var menu = $(".menu");
$(window).resize(function(){
$(".menu-toggle").removeClass("active");
if($(window).innerWidth() > 600){
menu.show();
} else {
menu.hide();
}
});
$(".menu-toggle").click(function(){
$(this).toggleClass("active");
menu.slideToggle();
})
$(".open-submenu").click(function(){
$(this).toggleClass("active");
$(this).next("ul").slideToggle();
$(this).children(".arrow").toggleClass("down up");
});
});
</script>
HTML
<nav>
<div class="navbar clear">
<a href="" class="logo" ></a>
<div class="menu-toggle"><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></div>
<div class="menu">
<ul>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121285781&url=" data-href="">menu 1</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121285781&url=" data-href="">menu 2</a></li>
<li>
<span class="open-submenu">menu 3 <span class="arrow down"></span></span>
<ul>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121285781&url=" data-href="">almenupont 1</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121285781&url=" data-href="">almenupont 2</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121285781&url=" data-href="">almenupont 3</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121285781&url=" data-href="">almenupont 4</a></li>
</ul>
</li>
<li>
<span class="open-submenu">menu 3 <span class="arrow down"></span></span>
<ul>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121285781&url=" data-href="">almenupont 1</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121285781&url=" data-href="">almenupont 2</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121285781&url=" data-href="">almenupont 3</a></li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121285781&url=" data-href="">almenupont 4</a></li>
</ul>
</li>
<li><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=121285781&url=" data-href="">menu 4</a></li>
</ul>
</div>
</div>
</nav>
DH forumlarında vakit geçirmekten keyif alıyor gibisin ancak giriş yapmadığını görüyoruz.
Üye Ol Şimdi DeğilÜye olduğunda özel mesaj gönderebilir, beğendiğin konuları favorilerine ekleyip takibe alabilir ve daha önce gezdiğin konulara hızlıca erişebilirsin.