Apakah anda ingin membuat TabView seperti gambar diatas pada blog anda ?
Berikut adalah kodenya :
<style type="text/css"> div.TabView div.Tabs {height: 30px;overflow: hidden} div.TabView div.Tabs a {float:left; display:block; width: 58px; /* Main Menu Top Width */ text-align:center ; height: 30px; /* Top High Main Menu */ padding-top:8px; vertical-align:middle; border:1px solid #e8e5df; /* Top Menu border color */ border-bottom-width:0; text-decoration: none; font-family: "Verdana", Serif; /* Top Fonts Main Menu */ font-weight:bold; color:#000; /* Main Menu Font Color Top */ -moz-border-radius-topleft:10px; -moz-border-radius-topright:10px} div.TabView div.Tabs a:hover, div.TabView div.Tabs a.Active {background-color: #ef9d00; /* Background colors on Main Menu */ } div.TabView div.Pages {clear:both; border:1px solid #BDBDBD; /* Main Box border color */ overflow:hidden; background-color:#FFFFFF; /* Main Box background color */ } div.TabView div.Pages div.Page {height:100%; padding:0px; overflow:hidden} div.TabView div.Pages div.Page div.Pad {padding: 5px 5px} </style> <script type='text/javascript'> //<![CDATA[ function tabview_aux(TabViewId, id) { var TabView = document.getElementById(TabViewId); // ----- Tabs ----- var Tabs = TabView.firstChild; while (Tabs.className != "Tabs" ) Tabs = Tabs.nextSibling; var Tab = Tabs.firstChild; var i = 0; do { if (Tab.tagName == "A") { i++; Tab.href = "javascript:tabview_switch('"+TabViewId+"', "+i+");"; Tab.className = (i == id) ? "Active" : ""; Tab.blur(); } } while (Tab = Tab.nextSibling); // ----- Pages ----- var Pages = TabView.firstChild; while (Pages.className != 'Pages') Pages = Pages.nextSibling; var Page = Pages.firstChild; var i = 0; do { if (Page.className == 'Page') { i++; if (Pages.offsetHeight) Page.style.height = (Pages.offsetHeight-2)+"px"; Page.style.overflow = "auto"; Page.style.display = (i == id) ? 'block' : 'none'; } } while (Page = Page.nextSibling); } // ----- Functions ------------------------------------------------------------- function tabview_switch(TabViewId, id) { tabview_aux(TabViewId, id); } function tabview_initialize(TabViewId) { tabview_aux(TabViewId, 1); } //]]> </script> <form action="tabview.html" method="get"> <div id="TabView" class="TabView"> <div style="width: 180px;" class="Tabs"> <a>title 1</a> <a>title 2</a> <a>title 3</a> </div> <div style="width: 180px; height:250px; " class="Pages"> <div class="Page"> <div class="Pad"> <ul> <li>PHP</li> <li>MySQL</li> <li>JAVA</li> <li>VB</li> </ul> </div> </div> <div class="Page"> <div class="Pad"> The contents of the menu tab 2 views </div> </div> <div class="Page"> <div class="Pad"> The contents of the menu tab 3 views </div> </div> </div> </div> </form> <script type="text/javascript"> tabview_initialize('TabView'); </script>
Link : http://juntenxblog.blogspot.com/2010/09/membuat-tabview-tabbertab-mengubah.html
0 komentar:
Posting Komentar