FIND US HERE

Saturday, April 02, 2011

Jquery Tab Menu For Blog

APA ITU JQUERY TAB MENU FOR BLOG? LIHAT GAMBAR DI BAWAH :

Sebelum Mouse Sentuh Menu

Selepas Mouse Sentuh Menu

1.Dashboard>design>add gadget>HTML/JAVASCRIPT 
2.CTRL+C untuk copy code di bawah 

<style type="text/css">
h5 {
font-family: trebuchet-ms, arial, tahoma;
font-size: 13px;
padding: 0 0 1em;
font-weight:bold;
color: #ffffff;
}
.msg_list {
list-style: none;
margin: 0;
padding: 0;
width: 100%;
}
.msg_head {
padding: 5px 10px;
cursor: pointer;
position: relative;
background-color:#F80680;
margin:1px;
}
.msg_body {
padding: 5px 10px 15px;
background-color:#F4F4F8;
}
</style>
<script type="text/javascript" src="https://sites.google.com/site/jquery01/tabmenuaccordion.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
//hide the all of the element with class msg_body
$(".msg_body").hide();
//slides the element with class "msg_body" when paragraph with class "msg_head" is clicked
$("#firstpane h5.msg_head").click(function()
{
$(this).next("div.msg_body").slideToggle(700).siblings("div.msg_body").slideUp("slow");
});
//slides the element with class "msg_body" when mouse is over the paragraph
$("#secondpane h5.msg_head").mouseover(function()
{
$(this).next("div.msg_body").slideDown("slow").siblings("div.msg_body").slideUp("slow");
});
});
</script>
<div class="msg_list" id="secondpane">
<h5 class="msg_head">ABOUT ME</h5>
<div class="msg_body">
Masukkan kod disini.
</div>
<h5 class="msg_head">THE SONG</h5>
<div class="msg_body">
Masukkan kod disini.
<h5 class="msg_head">ADORE</h5>
<div class="msg_body">
Masukkan kod disini.
</div>
</div>
3.PASTE CODE DI ATAS DI HTML/JAVASCRIPT 

*TUKARKAN PERKATAAN BERWARNA MERAH DENGAN TAJUK MENU YANG KORANG NAK 
*TUKARKAN PERKATAAN WARNA UNGU CODE YANG KORANG NAK.MCM CONTOH, CODE UNTUK LAGU, GAMBAR ATAU APA2 JE YG KORANG BERKENAN OK :)

4.JANGAN LUPA SAVE :)

HAVE FUN :D

No comments:

Post a Comment