123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <link href="<?php echo STYLE_PATH; ?>/css/head.css" rel="stylesheet">
- <!-- 页面头部 -->
- <div class="dingbu">
- 永天科技经过12年发展,拥有经验丰富的多样化团队,能为企业提供人脸识别,弱电智能化,消防物联网等多方面的服务
- </div>
- <div class="header">
- <div class="head">
- <div class="logo">
- <a href="<?php echo MAIN_PATH ?>">永天科技</a>
- </div>
- <div class="meun">
- <ul>
- <li <?php if($navi == 'index') echo 'class="current"';?>><a href="<?php echo MAIN_PATH ?>"><span>首 页</span></a></li>
- <li <?php if($navi == 'cloud') echo 'class="current"';?>><a href="<?php echo MAIN_PATH.'/cloud' ?>"><span>永天云</span></a></li>
- <li <?php if($navi == 'example') echo 'class="current"';?>><a href="<?php echo MAIN_PATH.'/example' ?>"><span>客户案例</span></a></li>
- <li <?php if($navi == 'news') echo 'class="current"';?>><a href="<?php echo MAIN_PATH.'/news' ?>"><span>新闻资讯</span></a></li>
- <li <?php if($navi == 'about') echo 'class="current"';?>><a href="<?php echo MAIN_PATH.'/about' ?>"><span>关于我们</span></a></li>
- <li <?php if($navi == 'join') echo 'class="current"';?>><a href="<?php echo MAIN_PATH.'/join' ?>"><span>人力资源</span></a></li>
- </ul>
- </div>
- <div style="margin-left:30px;float: left;">
- <a href="http://www.chinausky.com/index/index1"><img style="margin-top: 20px;" src="<?php echo STYLE_PATH; ?>/images/eh.png" alt=""></a>
- </div>
- <div class="tel" style="margin-left: 105px;">
- <h1>400-633-8668</h1>
- </div>
- <!-- 登录注册 -->
- <!--
- <div class="user">
- <div class="user_1">
- <ul>
- <li><a href="http://cloud.usky.cn/" target="_blank"><span>登录永天云</span></a></li>
- <li><a href="http://cloud.usky.cn/register?type=new" target="_blank"><span>注册</span></a></li>
- </ul>
- </div>
- </div>
- -->
- <!-- 登录注册 -->
- </div>
- </div>
- <div class="c1 h60"></div>
- <!-- 页面头部 -->
- <!-- 侧边栏 -->
- <div class="sidebar">
- <ul>
- <li class="no1">
- <img src="<?php echo STYLE_PATH; ?>/images/slider1_on.png" alt="" />
- <div class="alert1">
- <span style="margin-top: 26px;">服务热线:400-633-8668</span>
- <span>电话:021-65376655</span>
- <span> 021-62985186</span>
- <span>传真:021-65376655-8588</span>
- </div>
- </li>
- <li class="no2">
- <img src="<?php echo STYLE_PATH; ?>/images/slider2_on.png" alt="" />
- <div class="alert2">
- <img src="<?php echo STYLE_PATH; ?>/images/wx1.png" alt="" />
- </div>
- </li>
- <li class="no3 backTop"><img src="<?php echo STYLE_PATH; ?>/images/slider3_on.png" alt="" /></li>
- </ul>
- </div>
- <!-- 侧边栏 -->
- </body>
- <script type="text/javascript">
- $(function() {
- $(".meun").lavaLamp({
- fx: "backout",
- speed: 700,
- click: function(event, menuItem) {
- return true;
- }
- });
- $(".sidebar ul li.no1").mouseenter(
- function(){
- $(this).children(".alert1").show();
- });
- $(".sidebar ul li.no1").mouseleave(
- function(){
- $(this).children(".alert1").hide();
- });
- $(".sidebar ul li.no2").mouseenter(
- function(){
- $(this).children(".alert2").show();
- });
- $(".sidebar ul li.no2").mouseleave(
- function(){
- $(this).children(".alert2").hide();
- });
- $('.backTop').click(function(event) {
- $('html,body').stop().animate({'scrollTop':0}, 500);
- });
- });
- </script>
|