kalau yg tak paham JQuery Tab Menu Accordian tu hape . cube korg pergi sidebar aku , and gerakkan mouse korg kat situ .
Bukak Dashboard > Design > Page Elements > Add a Gadget > Pilih HTML/ Java Scripts.
copy ja kod bawah ni suma okay :)
<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:#FAAFBA;
margin:1px;
}
.msg_body {
padding: 5px 10px 15px;
background-color:#FFFFFF;
}
</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">TAJUK 1</h5>
<div class="msg_body">
MASUK KOD KORANG
</div>
<h5 class="msg_head">TAJUK 2</h5>
<div class="msg_body">
MASUK KOD KORANG
</div>
<h5 class="msg_head">TAJUK 3</h5>
<div class="msg_body">
MASUK KOD KORANG
</div>
</div>
#FFFFFF = adalah warna bagi tajuk,
#FAAFBA = background title box
#FFFFFF = background accordian box
*kalau korg nak tambah lagi , masukkan ja kod ni
<h5 class="msg_head">TAJUK 4</h5>
<div class="msg_body">
MASUK KOD KORANG
</div>





4 comments:
ala.nk kene cari kod tu yg mls. huhu
nak buat tapi tak tahu nak letak ape hehehe anyways nice job !
lionteen : hang memang dari dulu pamalaih :P
mardhiah ismail : letak je ape yg patut , senang tak banyak gune space )
Post a Comment