search
HomeWeb Front-endJS TutorialA so-called sliding door implemented in js_javascript skills

Sliding Doors: I don’t understand why they are called that.
I will name it: JMenuTab, because I wrote it to be my menu.

The test passed under IE6 and FireFox.

Copy code The code is as follows:

nbsp;html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">



无标题文档






  
    
    
  
 


大大小小多多少少

人口手足

ABCDEFG

A so-called sliding door implemented in js_javascript skills


  
    
    
  
    
  
  
    
    
  
    
    
  
    
  
  
    
  
  
    
  
JMenuTab 帮助:
Author:xling Blog:http://xling.blueidea.com  2007/05/23 
写这个程序只是为了解决燃眉之急(汉,虽然是急,我还是写了一天)!
程序中用到图片是修改了网上现有图片,所以,外表和某些网站上的一样,请不要见怪。因为除了图片,全是原创(不曾参考任何类似程序)!
IE6,Firefox下测试通过。
调用方法(注意顺序):
var menuTab = new JMenuTab(null,null,"menuBar");

menuTab.create();

menuTab.addTab("首页");

menuTab.addTab("组织架构","page1");

menuTab.addTab("员工信息","page2");

menuTab.addTab("业务知识","page3");


menuTab.addTab("Help","pageHelp");

menuTab.setActiveTab(2);




<script> <BR>function JMenuTab(pWidth,pHeight,pBody){ <BR>    var self = this; <br><br>    //________________________________________________ <BR>    var width = pWidth; <BR>    var height = pHeight; <br><br>    var titleHeight = 24; <BR>    //________________________________________________ <BR>    var oOutline = null; <BR>    var oTitleOutline = null; <BR>    var oPageOutline = null; <BR>    var oTitleArea = null; <BR>    var oPageArea = null; <br><br>    var tabArray = new Array(); <BR>    var activedTab = null; <BR>    //________________________________________________ <br><br>    var $ = function(pObjId){ <BR>        return document.getElementById(pObjId);     <BR>    } <br><br>    //________________________________________________ <br><br>    var body = $(pBody) || document.body; <br><br>    //________________________________________________ <br><br>    var htmlObject = function(pTagName){ <BR>        return document.createElement(pTagName); <BR>    } <br><br>    //________________________________________________ <br><br>    var isRate = function(pRateString){ <BR>        if(!isNaN(pRateString)) return false; <BR>        if(pRateString.substr(pRateString.length-1,1) != "%") <BR>            return false; <BR>        if(isNaN(pRateString.substring(0,pRateString.length - 1))) <BR>            return false; <BR>        return true; <BR>    }     <br><br>    //________________________________________________ <br><br>    var createOutline = function(){ <BR>        oOutline = htmlObject("DIV"); <BR>        body.appendChild(oOutline); <BR>        oOutline.className = "oOutline"; <BR>    }<br><br>    //________________________________________________ <br><br>    var createTitleOutline = function(){ <BR>        oTitleOutline = htmlObject("DIV"); <BR>        oOutline.appendChild(oTitleOutline); <BR>        oTitleOutline.className = "oTitleOutline"; <br><br>        var vTable = htmlObject("TABLE"); <BR>        oTitleOutline.appendChild(vTable); <BR>        vTable.width = "100%"; <BR>        vTable.border = 0; <BR>        vTable.cellSpacing = 0; <BR>        vTable.cellPadding = 0; <br><br>        var vTBody = htmlObject("TBODY"); <BR>        vTable.appendChild(vTBody); <br><br>        var vTr1 = htmlObject("TR"); <BR>        vTBody.appendChild(vTr1); <br><br>        var vTdTopLeft = htmlObject("TD"); <BR>        vTr1.appendChild(vTdTopLeft); <BR>        vTdTopLeft.height = titleHeight; <BR>        vTdTopLeft.className = "oTopLeft"; <br><br>        oTitleArea = htmlObject("TD");///////////////////////////////// <BR>        vTr1.appendChild(oTitleArea); <BR>        oTitleArea.className = "oTitleArea"; <br><br>        var vTdTopRight = htmlObject("TD"); <BR>        vTr1.appendChild(vTdTopRight); <BR>        vTdTopRight.className = "oTopRight"; <BR>    } <br><br>    this.setTitleHeight = function(pHeight){ <BR>        //设置标题区域的高度 <BR>    } <br><br>    //________________________________________________ <br><br>    var tabBtn_click = function(){ <BR>        self.setActiveTab(this.index); <BR>    } <br><br>    var tabBtn_mouseover = function(){ <BR>        if(this.className =="oTabBtnActive") <BR>            return; <br><br>        this.className = "oTabBtnHover"; <BR>    } <br><br>    var tabBtn_mouseout = function(){ <BR>        if(this.className =="oTabBtnActive") <BR>            return; <BR>        this.className = "oTabBtn"; <BR>    }     <BR>    //________________________________________________ <br><br>    var createTabBtn = function(pLabel,pTabPage){ <BR>        var vTabBtn = htmlObject("DIV"); <BR>        oTitleArea.appendChild(vTabBtn); <BR>        vTabBtn.className = "oTabBtn"; <BR>        vTabBtn.index = tabArray.length; <BR>        vTabBtn.tabPage = pTabPage; <BR>        vTabBtn.onclick = tabBtn_click; <BR>        vTabBtn.onmouseover = tabBtn_mouseover; <BR>        vTabBtn.onmouseout = tabBtn_mouseout; <br><br>        tabArray.push(vTabBtn); <br><br>        var vTabBtnL = htmlObject("DIV"); <BR>        vTabBtn.appendChild(vTabBtnL); <BR>        vTabBtnL.className = "oTabBtnLeft"; <br><br>        vTabBtnC = htmlObject("DIV"); <BR>        vTabBtn.appendChild(vTabBtnC); <BR>        vTabBtnC.className = "oTabBtnCenter"; <BR>        vTabBtnC.innerHTML = pLabel; <br><br>        vTabBtnR = htmlObject("DIV"); <BR>        vTabBtn.appendChild(vTabBtnR); <BR>        vTabBtnR.className = "oTabBtnRight"; <BR>    }<br><br>     <BR>    var createPageOutline = function(){ <BR>        oPageOutline = htmlObject("DIV"); <BR>        oOutline.appendChild(oPageOutline); <BR>        oPageOutline.className = "oPageOutline"; <br><br>        var vTable = htmlObject("TABLE"); <BR>        oPageOutline.appendChild(vTable); <BR>        vTable.width = "100%"; <BR>        vTable.border = 0; <BR>        vTable.cellSpacing = 0; <BR>        vTable.cellPadding = 0; <BR>        vTable.style.borderCollapse = "collapse"; <BR>        vTable.style.tableLayout="fixed"; <br><br>        var vTBody = htmlObject("TBODY"); <BR>        vTable.appendChild(vTBody); <br><br>        var vTr1 = htmlObject("TR"); <BR>        vTBody.appendChild(vTr1); <br><br>        var vTdBottomLeft = htmlObject("TD"); <BR>        vTr1.appendChild(vTdBottomLeft); <BR>        vTdBottomLeft.className = "oBottomLeft"; <BR>        vTdBottomLeft.rowSpan = 2; <br><br>        oPageArea = htmlObject("TD");/////////////////////////////////////// <BR>        vTr1.appendChild(oPageArea); <BR>        oPageArea.className = "oPageArea"; <BR>        if(oPageArea.filters) <BR>            oPageArea.style.cssText = "FILTER: progid:DXImageTransform.Microsoft.Wipe(GradientSize=1.0,wipeStyle=0, motion='forward');"; <BR>        oPageArea.height = 10; <br><br>        var vTdBottomRight = htmlObject("TD"); <BR>        vTr1.appendChild(vTdBottomRight); <BR>        vTdBottomRight.className = "oBottomRight"; <BR>        vTdBottomRight.rowSpan = 2; <br><br>        var vTr2 = htmlObject("TR"); <BR>        vTBody.appendChild(vTr2); <br><br>        var vTdBottomCenter = htmlObject("TD"); <BR>        vTr2.appendChild(vTdBottomCenter); <BR>        vTdBottomCenter.className = "oBottomCenter"; <BR>    } <br><br>    //________________________________________________ <br><br>    this.addTab = function (pLabel,pPageBodyId){ <BR>        createTabBtn(pLabel,pPageBodyId); <BR>        if($(pPageBodyId)){ <BR>            oPageArea.appendChild($(pPageBodyId)); <BR>            $(pPageBodyId).style.display = "none"; <BR>        } <BR>    } <br><br>    //________________________________________________ <br><br>    this.setActiveTab = function(pIndex){ <BR>        if(oPageArea.filters) <BR>            oPageArea.filters[0].apply(); <br><br>        if(activedTab != null){ <BR>            activedTab.className = "oTabBtn"; <BR>            if($(activedTab.tabPage)) <BR>                $(activedTab.tabPage).style.display = "none"; <BR>        }<BR>        activedTab = tabArray[pIndex]; <BR>        activedTab.className = "oTabBtnActive"; <BR>        if($(activedTab.tabPage)) <BR>            $(activedTab.tabPage).style.display = ""; <br><br>        if(oPageArea.filters) <BR>            oPageArea.filters[0].play(duration=1); <BR>    }; <br><br>    //________________________________________________ <br><br>     <BR>    this.create = function(){ <BR>        createOutline(); <BR>        createTitleOutline(); <BR>        createPageOutline(); <BR>    } <BR>} <br><br>var menuTab = new JMenuTab(null,null,"menuBar"); <BR>    menuTab.create(); <BR>    menuTab.addTab("首页"); <BR>    menuTab.addTab("组织架构","page1"); <BR>    menuTab.addTab("员工信息","page2"); <BR>    menuTab.addTab("业务知识","page3"); <BR>    menuTab.addTab("ISO系统"); <BR>    menuTab.addTab("办公环境"); <BR>    menuTab.addTab("公司新闻"); <BR>    menuTab.addTab("公共政策"); <BR>    menuTab.addTab("链接总部"); <BR>    menuTab.addTab("Help","pageHelp"); <BR>    menuTab.setActiveTab(2); <BR></script>


下载源码察看效果。
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Replace String Characters in JavaScriptReplace String Characters in JavaScriptMar 11, 2025 am 12:07 AM

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Build Your Own AJAX Web ApplicationsBuild Your Own AJAX Web ApplicationsMar 09, 2025 am 12:11 AM

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

10 jQuery Fun and Games Plugins10 jQuery Fun and Games PluginsMar 08, 2025 am 12:42 AM

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

How do I create and publish my own JavaScript libraries?How do I create and publish my own JavaScript libraries?Mar 18, 2025 pm 03:12 PM

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

jQuery Parallax Tutorial - Animated Header BackgroundjQuery Parallax Tutorial - Animated Header BackgroundMar 08, 2025 am 12:39 AM

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the

How do I optimize JavaScript code for performance in the browser?How do I optimize JavaScript code for performance in the browser?Mar 18, 2025 pm 03:14 PM

The article discusses strategies for optimizing JavaScript performance in browsers, focusing on reducing execution time and minimizing impact on page load speed.

Getting Started With Matter.js: IntroductionGetting Started With Matter.js: IntroductionMar 08, 2025 am 12:53 AM

Matter.js is a 2D rigid body physics engine written in JavaScript. This library can help you easily simulate 2D physics in your browser. It provides many features, such as the ability to create rigid bodies and assign physical properties such as mass, area, or density. You can also simulate different types of collisions and forces, such as gravity friction. Matter.js supports all mainstream browsers. Additionally, it is suitable for mobile devices as it detects touches and is responsive. All of these features make it worth your time to learn how to use the engine, as this makes it easy to create a physics-based 2D game or simulation. In this tutorial, I will cover the basics of this library, including its installation and usage, and provide a

Auto Refresh Div Content Using jQuery and AJAXAuto Refresh Div Content Using jQuery and AJAXMar 08, 2025 am 12:58 AM

This article demonstrates how to automatically refresh a div's content every 5 seconds using jQuery and AJAX. The example fetches and displays the latest blog posts from an RSS feed, along with the last refresh timestamp. A loading image is optiona

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools