`

页面模板

 
阅读更多
iindex.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>云首页</title>
<script src="js/jquery-1.11.3.js"></script>
<link href="css/common.css" type="text/css" rel="stylesheet"/>
<link href="css/index.css" type="text/css" rel="stylesheet"/>
<style>
    .menuBar2 a{
        color:#F83;
    }
    .menuBar3 a{
        color:#666;
    }
</style>
<script type="text/javascript">
    $(function(){
        $(".dd1").css("font-size","14px");       
        $("#selectBtn").click(function(){           
            $("#img1").fadeIn("slow");
            $("#img2,#img3").hide();
            $("#selectBtn").empty().html("<img src='image/sel1.png'/>");
            $("#selectBtn2,#selectBtn3").empty().html("<img src='image/sel2.png'/>");
        });
        $("#selectBtn2").click(function(){
            $("#img2").fadeIn("slow");
            $("#img1,#img3").hide();
            $("#selectBtn2").empty().html("<img src='image/sel1.png'/>");
            $("#selectBtn,#selectBtn3").empty().html("<img src='image/sel2.png'/>");   
        });
        $("#selectBtn3").click(function(){
            $("#img3").fadeIn("slow");
            $("#img1,#img2").hide();
            $("#selectBtn3").empty().html("<img src='image/sel1.png'/>");
            $("#selectBtn,#selectBtn2").empty().html("<img src='image/sel2.png'/>");   
        });
        $("#btn4").hover(
            function(){           
               $("#btn4 img").toggle();
            },           
            function(){           
               $("#btn4 img").toggle();
            }
        );
        $("#btn4").click(function(){
            location.href="app/buyCloud.html";
        });
        $("#btn6").hover(
            function(){           
               $("#btn6 img").toggle();
            },           
            function(){           
               $("#btn6 img").toggle();
            }
        );
        $("#btn6").click(function(){
            location.href="#";
        });
        $("#btn7").hover(
            function(){           
               $("#btn7 img").toggle();
            },           
            function(){           
               $("#btn7 img").toggle();
            }
        );
        $("#btn7").click(function(){
            location.href="#";
        });
        $("#center").hover(
            function(){           
               $("#center img").toggle();
            },           
            function(){           
               $("#center img").toggle();
            }
        );
        $("#center").click(function(){
            location.href="#";
        });
        $(".p1").hover(
            function(){           
               $(this).children("img").toggle();
            },           
            function(){           
               $(this).children("img").toggle();
            }
        );
        $(".p1").click(function(){
            location.href="#";
        });
        var w1 = $(window).width();
        var w2 = $("#main").width();
        var w3 = (w1 - w2)/2;
        var h = $("#main").height() + 20;
        var h1 = $("#img1").height();
        var h2 = 500 - $("#img1").height();
        $(".foot").css("margin-top",h - h2);
        $(".bannerBar,.bannerBar2").css("height",h1);
        if(w1 >= w2){
            $("#main").css("margin-left",w3);
            $("#selectBtn").css("left",w3);
            $("#selectBtn").css("top",450 - h2);
            $("#selectBtn2").css("left",w3 + 66);
            $("#selectBtn2").css("top",450 - h2);
            $("#selectBtn3").css("left",w3 + 132);
            $("#selectBtn3").css("top",450 - h2);
            $("#clickA").css("margin-left",w3 + 470);
            $("#menuTopBar").css("margin-left",w3 + 270);
            $("#clickB").css("margin-left",w3 + 595);
            $("#menuTopBar2").css("margin-left",w3 + 420);
            $("#clickC").css("margin-left",w3 + 725);
            $("#menuTopBar3").css("margin-left",w3 + 670);
        }else{
            $("#main").css("margin-left",0);
            $("#selectBtn").css("left",0);
            $("#selectBtn").css("top",450 - h2);
            $("#selectBtn2").css("left",66);
            $("#selectBtn2").css("top",450 - h2);
            $("#selectBtn3").css("left",132);
            $("#selectBtn3").css("top",450 - h2);
            $("#clickA").css("margin-left",470);
            $("#menuTopBar").css("margin-left",270);
            $("#clickB").css("margin-left",595);
            $("#menuTopBar2").css("margin-left",420);
            $("#clickC").css("margin-left",725);
            $("#menuTopBar3").css("margin-left",670);
        }
        $(window).resize(function(){
            var w1 = $(window).width();
            var w2 = $("#main").width();
            var h1 = $("#img1").height();
            var h2 = 500 - $("#img1").height();
            $(".foot").css("margin-top",h - h2);
            $(".bannerBar,.bannerBar2").css("height",h1);               
            var w3 = (w1 - w2)/2;
            if(w1 >= w2){
                $("#main").css("margin-left",w3);
                $("#selectBtn").css("left",w3);
                $("#selectBtn").css("top",450 - h2);
                $("#selectBtn2").css("left",w3 + 66);
                $("#selectBtn2").css("top",450 - h2);
                $("#selectBtn3").css("left",w3 + 132);
                $("#selectBtn3").css("top",450 - h2);
                $("#clickA").css("margin-left",w3 + 470);
                $("#menuTopBar").css("margin-left",w3 + 270);
                $("#clickB").css("margin-left",w3 + 595);
                $("#menuTopBar2").css("margin-left",w3 + 420);
                $("#clickC").css("margin-left",w3 + 725);   
                $("#menuTopBar3").css("margin-left",w3 + 670);                   
            }else{
                $("#main").css("margin-left",0);
                $("#selectBtn").css("left",0);
                $("#selectBtn").css("top",450 - h2);
                $("#selectBtn2").css("left",66);
                $("#selectBtn2").css("top",450 - h2);
                $("#selectBtn3").css("left",132);
                $("#selectBtn3").css("top",450 - h2);
                $("#clickA").css("margin-left",470);
                $("#menuTopBar").css("margin-left",270);   
                $("#clickB").css("margin-left",595);   
                $("#menuTopBar2").css("margin-left",420);   
                $("#clickC").css("margin-left",725);   
                $("#menuTopBar3").css("margin-left",670);
            }
            $("#cloudBtn").hover(
                function(){                               
                    $("#clickA,#menuTopBar").show();
                    $("#clickB,#menuTopBar2").hide();
                    $("#clickC,#menuTopBar3").hide();
                },           
                function(){}
            );
            $("#menuTopBar").hover(
                function(){},           
                function(){           
                    $("#clickA,#menuTopBar").hide();
                }
            );
            $("#caseBtn").hover(
                function(){   
                    $("#clickA,#menuTopBar").hide();                           
                    $("#clickB,#menuTopBar2").show();
                    $("#clickC,#menuTopBar3").hide();
                },           
                function(){}
            );
            $("#menuTopBar2").hover(
                function(){},           
                function(){           
                    $("#clickB,#menuTopBar2").hide();
                }
            );
            $("#storeBtn").hover(
                function(){   
                    $("#clickA,#menuTopBar").hide();
                    $("#clickB,#menuTopBar2").hide();                           
                    $("#clickC,#menuTopBar3").show();
                },           
                function(){}
            );
            $("#menuTopBar3").hover(
                function(){},           
                function(){           
                    $("#clickC,#menuTopBar3").hide();
                }
            );       
        });
        $("#cloudBtn").hover(
            function(){       
                $("#clickA,#menuTopBar").show();
                $("#clickB,#menuTopBar2").hide();
                $("#clickC,#menuTopBar3").hide();
            },           
            function(){}
        );
        $("#menuTopBar").hover(
            function(){},           
            function(){           
                $("#clickA,#menuTopBar").hide();
            }
        );
        $("#caseBtn").hover(
            function(){   
                $("#clickA,#menuTopBar").hide();                           
                $("#clickB,#menuTopBar2").show();
                $("#clickC,#menuTopBar3").hide();
            },           
            function(){}
        );
        $("#menuTopBar2").hover(
            function(){},           
            function(){           
                $("#clickB,#menuTopBar2").hide();
            }
        );   
        $("#storeBtn").hover(
            function(){   
                $("#clickA,#menuTopBar").hide();
                $("#clickB,#menuTopBar2").hide();                           
                $("#clickC,#menuTopBar3").show();
            },           
            function(){}
        );
        $("#menuTopBar3").hover(
            function(){},           
            function(){           
                $("#clickC,#menuTopBar3").hide();
            }
        );
        $("#homeBtn,#cooBtn,#aboutBtn").hover(
            function(){
                $("#clickA,#menuTopBar").hide();
                $("#clickB,#menuTopBar2").hide();
                $("#clickC,#menuTopBar3").hide();
            },           
            function(){}
        );
        $(".menuBar3 a").hover(
            function(){
                $(this).css("color","#008fd5");
            },           
            function(){           
                $(this).css("color","#666");
            }
        );
    })
</script>
</head>
<body>
    <div class="background">
        <ul class="backBar"></ul>
    </div>
    <div class="bannerBar">
        <a href="app/buyCloud.html">
            <img id="img1" src="image/ad.jpg" width="100%"/>
        </a>
        <a href="#">
            <img id="img2" src="image/ad2.jpg" width="100%" style="display:none"/>
        </a>
        <a href="#">
            <img id="img3" src="image/ad3.jpg" width="100%" style="display:none"/>
        </a>
        <a id="selectBtn" class="selectBtn"><img src="image/sel1.png"/></a>
        <a id="selectBtn2" class="selectBtn"><img src="image/sel2.png"/></a>
        <a id="selectBtn3" class="selectBtn"><img src="image/sel2.png"/></a>
    </div>
    <div id="clickA" class="click1" style="display:none;"><img src="image/click.png"/></div>
    <div id="clickB" class="click1" style="display:none;"><img src="image/click.png"/></div>
    <div id="clickC" class="click1" style="display:none;"><img src="image/click.png"/></div>
    <div id="menuTopBar" class="menuBar shadow" style="display:none;">
        <ul>
            <li class="menuBar2" style="margin-top:0;">
                <a href="app/elasticCloud.html">弹性计算云</a>
            </li>
            <li class="menuBar3">
                <a href="app/buyCloud.html">云服务器</a>
            </li>
        </ul>
        <ul style="border-left:#ccc dashed 1px;border-right:#ccc dashed 1px;">
            <li class="menuBar2" style="margin-top:0;">
                <a href="#">云存储</a>
            </li>
            <li class="menuBar3">
                <a href="app/objectStore.html">对象存储</a>
            </li>
            <li class="menuBar3">
                <a href="#">云数据库</a>
            </li>
        </ul>
        <ul>
            <li class="menuBar2" style="margin-top:0;">
                <a href="#">数据中心产品</a>
            </li>
            <li class="menuBar3">
                <a href="#">虚拟数据中心</a>
            </li>
        </ul>
    </div>
    <div id="menuTopBar2" class="menuBar shadow" style="display:none;">
        <ul style="border-right:#ccc dashed 1px;">
            <li class="menuBar2" style="margin-top:0;">
                <a href="#">行业解决方案</a>
            </li>
            <li class="menuBar3">
                <a href="#">政务云</a>
            </li>
            <li class="menuBar3">
                <a href="#">教育云</a>
            </li>
        </ul>
        <ul>
            <li class="menuBar2" style="margin-top:0;">
                <a href="#">服务解决方案</a>
            </li>
            <li class="menuBar3">
                <a href="#">数据备份/归档解决方案</a>
            </li>
        </ul>
    </div>
    <div id="menuTopBar3" class="menuBar shadow" style="display:none;">
        <ul>
            <li class="menuBar2" style="margin-top:0;">
                <a href="#">日常办公</a>
            </li>
            <li class="menuBar3">
                <a href="#">移动办公 MOA</a>
            </li>
            <li class="menuBar3">
                <a href="#">视频会议 VCS</a>
            </li>
        </ul>
    </div>
    <div id="main" class="mainDiv">
        <ul class="topBar">
            <li class="topLeftBar">
                <img src="image/logo.png"/>
            </li>
            <li class="topRightBar">
                <span class="span1">
                    <a href="app/login.html" class="tips">登录</a> &nbsp;|&nbsp;
                    <a href="app/register.html" class="tips">注册</a> &nbsp;|&nbsp;
                    <a href="app/control.html" class="tips" style="color:#F26522">我的控制台</a>
                </span>
                <span class="span2">
                    <a href="index.html" class="active" id="homeBtn">首页</a>
                    <a href="#" class="menu" id="cloudBtn">云产品</a>
                    <a href="#" class="menu" id="caseBtn">解决方案</a>
                    <a href="#" class="menu" id="storeBtn">应用商城</a>
                    <a href="app/cooperation.html" class="menu" id="cooBtn">合作</a>
                    <a href="app/aboutUs.html" class="menu" style="margin-right:0;" id="aboutBtn">关于我们</a>   
                </span>
            </li>
        </ul>
        <ul class="bannerBar2">                       
        </ul>
        <ul class="contentDiv">
            <li class="contentLeftDiv">
                <span class="contentLeftSpan">
                    <img src="image/img1.jpg"/>
                </span>
                <span class="contentRightSpan">
                    <div>
                        <div class="dt1" style="font-size:21px;">解决方案</div>
                        <div class="dd1">
                            <p class="p1">
                                <img src="image/btn1.png"/>
                                <img src="image/btn11.png" style="display:none;"/>
                            </p>
                            <p class="p3"><a href="#">政务云</a></p>
                        </div>
                        <p class="clear"></p>
                        <div class="dd1">
                            <p class="p1">
                                <img src="image/btn2.png"/>
                                <img src="image/btn21.png" style="display:none;"/>
                            </p>
                            <p class="p3"><a href="#">教育云</a></p>
                        </div>
                    </div>
                </span>
                <span class="contentLeftSpan2">
                    <img src="image/img2.jpg"/>
                </span>
                <span class="contentRightSpan2">
                    <div>
                        <div class="dt1" style="font-size:21px;">应用商城</div>
                        <div class="dd1">
                            <p class="p1">
                                <img src="image/moa.png"/>
                                <img src="image/moa3.png" style="display:none;"/>
                            </p>
                            <p class="p2"><a href="#">移动办公</a><br/>移动办公,一手掌握</p>
                        </div>
                        <p class="clear"></p>
                        <div class="dd1">
                            <p class="p1">
                                <img src="image/video.png"/>
                                <img src="image/video2.png" style="display:none;"/>
                            </p>
                            <p class="p2"><a href="#">视频会议</a><br/>多方视频,沟通无碍</p>
                        </div>
                    </div>
                </span>
            </li>
            <li class="contentRightDiv">
                <span class="contentTopSpan">
                    <div>
                        <div class="dt1" style="font-size:21px;">云产品</div>
                        <div class="dd1">基础服务:云托管,提供7*24可靠托管服务;弹性计算云,申请的云主机可以按需进行升级或降级弹性伸缩;VDC...</div>
                        <div class="dd1" style="width:100%;">增值服务:数据迁移、数据备份与容灾、业务咨询</div>                       
                        <div class="dd1">
                            <p id="btn">
                                <span id="btn4" class="btnDiv2">
                                    <img src="image/btn4.png"/>
                                    <img src="image/btn41.png" style="display:none;"/>
                                </span>
                                <span id="btn6" class="btnDiv2" style="margin-top:10px;">
                                    <img src="image/btn6.png"/>
                                    <img src="image/btn61.png" style="display:none;"/>
                                </span>
                                <span id="btn7" class="btnDiv2" style="margin-top:10px;">
                                    <img src="image/btn7.png"/>
                                    <img src="image/btn71.png" style="display:none;"/>
                                </span>
                                <span id="center" class="btnDiv2" style="margin-top:10px;">
                                    <img src="image/center.png"/>
                                    <img src="image/center2.png" style="display:none;"/>
                                </span>
                            </p>
                        </div>
                    </div>
                </span>
            </li>
        </ul>
    </div>
    <div class="foot"> © 1985-2015 版权所有</div>
</body>
</html>

index.css

 

/* CSS Document */
.bannerBar{
    margin-top:82px;
    min-width:1000px;
    position:absolute;
    z-index:3;
}
.bannerBar2{
    height:500px;
    position:relative;
}
.selectBtn{
    position:absolute;
    z-index:2;
}
.contentDiv{
    margin-top:30px;
    min-width:1000px;
    float:left;
}
.contentLeftDiv{
    width:490px;
    height:420px;
    float:left;
}
.contentRightDiv{
    width:490px;
    height:420px;
    float:right;
    background-color:#00aae9;
}
.contentLeftSpan2 img{
    float:left;
}
.contentLeftSpan2{
    float:left;
    margin-top:20px;
}
.contentLeftSpan,.contentLeftSpan img,.contentLeftSpan2 img{
    float:left;
}
.contentRightSpan{
    width:240px;
    height:200px;
    float:left;
    background-color:#00bb96;
    color:#fff;
    font-size:13px;
    text-align:left;
    padding-left:25px;
    padding-right:25px;
}
.contentRightSpan2{
    width:240px;
    height:200px;
    float:left;
    background-color:#8dc100;
    color:#fff;
    font-size:13px;
    text-align:left;
    padding-left:25px;
    padding-right:25px;
    margin-top:20px;
}
.contentTopSpan{
    float:left;
    width:440px;
    color:#fff;
    font-size:13px;
    text-align:left;
    padding-left:25px;
    padding-right:25px;
}
.buy{
    color:#fff;
}
.buy:hover{
    color:#65ccff;
    text-decoration:none;
    cursor:pointer;
}
.dt1{
    margin-top:20px;
    font-weight:bold;
}
.dd1{
    margin-left:0;
    margin-top:15px;
    float:left;
}
.dd2{
    margin-left:0;
    margin-top:25px;
    float:left;
}
.p1{
    float:left;
}
.p1 img{
    cursor:pointer;
}
.p2{
    float:left;
    margin-left:25px;
}
.p2 a{
    font-size:17px;
}
.p3{
    float:left;
    margin-left:25px;
    margin-top:12px;
}
.p3 a{
    font-size:17px;
}
.ddLeftDiv{
    margin-top:30px;
    padding-right:20px;
    width:110px;
    height:310px;
    float:left;
    border-right:#fff dashed 1px;
}
.btnDiv{
    width:110px;
    height:110px;
    float:left;
    margin-left:25px;
    margin-top:5px;
    cursor:pointer;
}
.btnDiv2{
    width:110px;
    height:110px;
    float:left;
    margin-left:20px;
    margin-top:10px;
    cursor:pointer;
}
.ddRightTopDiv{
    margin-top:30px;
    margin-left:10px;
    padding-bottom:10px;
    border-bottom:#fff dashed 1px;
    float:left;
}
.ddRightBottomDiv{
    margin-top:20px;
    margin-left:10px;
    float:left;
}
.btnSpan{   
    font-size:17px;
    padding-left:10px;
    width:100%;
    float:left;
}
分享到:
评论

相关推荐

    用户登录页面模板

    本资源提供了一个美观的用户登录页面模板,旨在帮助开发者快速构建符合自身需求的登录界面。下面将详细介绍该模板的设计元素、功能以及如何自定义和应用。 首先,登录页面模板通常包含以下几个核心元素: 1. **...

    管理系统 jsp 页面模板 (干净实用) 有js

    【标题】:“管理系统 jsp 页面模板 (干净实用) 有js” 这个标题表明我们讨论的是一个基于JSP技术的管理系统的页面模板,其中包含了JavaScript(js)进行前端验证。JSP(JavaServer Pages)是Java平台上的一种...

    java-前端页面模板

    Java 前端页面模板是为开发者提供的一种基础架构,旨在简化前端开发流程,尤其适合初学者或希望快速搭建项目原型的团队。该模板没有采用复杂的前端框架,如React、Vue或Angular,而是以更轻量级的方式构建,使得理解...

    公司简约静态页面模板

    【公司简约静态页面模板】是一种常见的网页设计资源,主要用于快速构建企业或公司的官方网站。这种模板以其简洁、清晰的设计风格和高效的功能布局,为开发者提供了一个快速启动项目的基础框架。在HTML模板中,"简约...

    简单通用登录页面模板 bootstrap登录页面 html页面

    本资源提供的“简单通用登录页面模板”是基于Bootstrap框架创建的,Bootstrap是目前非常流行的一款前端开发框架,以其响应式布局和丰富的组件库深受开发者喜爱。 1. **Bootstrap简介** Bootstrap是由Twitter开发并...

    01.AxureUX中后台管理信息系统通用原型设计方案 v2(系统框架+页面模板).rp

    01.AxureUX中后台管理信息系统通用原型设计方案 v2(系统框架+页面模板).rp 01.AxureUX中后台管理信息系统通用原型设计方案 v2(系统框架+页面模板).rp 01.AxureUX中后台管理信息系统通用原型设计方案 v2(系统框架+...

    在线考试答题页面模板

    在线考试答题页面模板是用于创建和实施在线教育与评估的重要工具。这种模板设计的主要目标是为学生或参与者提供一个友好的界面,使他们能够轻松地完成考试或测验。下面将详细探讨在线考试答题页面模板的关键组成部分...

    页面模板页面模板

    页面模板在IT行业中,特别是在Web开发领域,是一个重要的概念。它是一种预定义的布局或设计,用于创建具有统一外观和感觉的网页。这种模板通常包含了HTML、CSS(层叠样式表)以及可能的JavaScript代码,使得开发者...

    酷炫PC端登录页面模板

    "酷炫PC端登录页面模板"提供了一个具有前端验证功能的高级示例,它利用了JavaScript、CSS和jQuery技术来实现动态效果,使用户体验更加丰富。下面我们将深入探讨这个模板中的关键知识点。 首先,HTML(HyperText ...

    Bootstrap 后台管理系统页面模板【可用】

    Bootstrap 后台管理系统页面模板是基于流行的前端框架Bootstrap构建的高效、美观且响应式的网页设计模板,主要用于构建后台管理界面。这些模板通常包含各种组件、布局和功能,以满足管理员在处理数据、监控系统和...

    web登录注册页面模板150款(效果图+源码)

    总之,"web登录注册页面模板150款"是一个宝贵的资源,它提供了一站式的解决方案,涵盖了多种设计风格和功能实现,对于前端开发者来说,无论是快速启动新项目,还是提升现有项目的用户体验,都有着极大的帮助。...

    前台页面模板.zip

    【标题】"前台页面模板.zip" 是一个包含前端网页设计元素的压缩文件,主要用于构建公司门户网站。这样的模板通常包括一系列预设计的HTML、CSS和JavaScript文件,为展示公司的基本信息、新闻、产品等内容提供了结构和...

    后台页面模板(页面很多)

    【后台页面模板(页面很多)】是一个专门为各类后台系统设计的多用途模板,适用于广泛的业务场景,如电子商务、OA(办公自动化)系统等。这款模板以其精致的设计和丰富的功能,为开发者提供了构建高效、美观的后台...

    HTML5单页创意404错误页面模板.zip

    "HTML5单页创意404错误页面模板"就是一个很好的例子,它利用HTML5的特性,为用户呈现了一个富有创意的404错误页面。这样的模板不仅提升了用户体验,也使网站在遇到无法找到页面的情况时,仍能保持整体设计风格的一致...

    个人博客页面模板 blog

    【个人博客页面模板blog】是一个专为初学者和爱好者设计的网页模板,旨在提供一个实践和展示个人技术、思想的平台。这个模板包含了完整的博客系统功能,不仅在视觉上进行了基本的美化,使其看起来既专业又吸引人,...

    java登陆页面模板

    Java登录页面模板是一种基于Java语言开发的用户界面设计,主要用于构建系统的登录功能。在Web应用程序中,登录页面是用户进入系统的门户,它负责收集用户的凭证(如用户名和密码),并验证这些信息是否与数据库中...

    网站前端页面模板(15套包括pc端、移动端)

    网站前端页面模板是构建网页的重要组成部分,它们提供了一种便捷的方式,使开发者能够快速搭建具有专业外观和功能的网站。本资源包含15套不同类型的前端页面模板,涵盖了PC端和移动端,旨在供学习和参考。 首先,让...

    15个手机页面模板源码,html5

    这15个手机页面模板源码涵盖了各种常见的页面布局和功能,包括登录注册、产品展示、新闻列表、购物车、个人中心等,可以帮助开发者快速搭建移动网站,减少从零开始的开发工作量。每个模板都有详细的HTML结构和CSS...

    404页面模板

    404页面模板设计的目的是为了提供一种友好的用户体验,帮助用户理解他们所寻找的页面无法找到,并提供可能的解决方案或者导航回到网站的其他部分。朋友分享的这个压缩包包含了62个不同的404页面模板,这为我们提供了...

Global site tag (gtag.js) - Google Analytics