⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tab.php

📁 falsh web site which can run
💻 PHP
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<HTML>
<HEAD>
    <TITLE>Floating window with tabs</TITLE>
    <STYLE TYPE="text/css">
    body{
        font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;
        width:100%;
        height:100%;
        margin:0px;
        padding:0px;
        overflow:hidden;
    }
    a{
        color:red;
    }
    img{
        border:0px;
    }
    </STYLE>    
    <link rel="stylesheet" href="floating_window_with_tabs.css" media="screen">
    <script type="text/javascript">
    var floating_window_skin = 1;
    </script>    
    <script type="text/javascript" src="floating_window_with_tabs.js"></script>
</HEAD>
<BODY>

<div id="debug"></div>
<div id="window1">
    <div class="floatingWindowContent">
  <?php include 'emailtest.php';  ?>
    </div> </div>
 <div id="window2">   
    <div class="floatingWindowContent">
    <?php include 'translink.php'; ?>       
    </div> </div>
        
    <div class="floatingWindowContent">
    <?php include 'rss.php'; ?>    
    </div>
</div>



<script type="text/javascript">
// Arguments to function :
// 1. ID of window
// 2. array of tab names
// 3. Initial window height
// 4. Initial window width
// 5. left position(could be overriden by cookies)
// 6. top position(could be overridden by cookies)
// 7. No scrollbars
// 8. No resize handle
// 0. No status bar
// 10. No close button
// 11. No minimize button

// windowID,tabs,windowHeight,windowWidth,leftPos,topPos,noScrollbars,noResize,noStatusBar,noCloseButton,noMinimizeButton


initFloatingWindowWithTabs('window1',Array('Info','More info','The end'),450,400,80,80,true,true,false,true);

</script>
</BODY>
</HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -