zoukankan      html  css  js  c++  java
  • jQuery Mobile_公司简介

    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-width=1.0,maximum-width=1.0,user-scalable=no"/>
    <title>无标题文档</title>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">
    <script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
    </head>
    
    <body>
    <div data-role="page" id="home">
    	<div data-role="header">
        	<a data-role="button" href="#home" data-icon="home">主页</a>
        	<h4>公司简介</h4>
         	<a data-role="button" href="#home" data-icon="search">搜索</a>
         </div>
         <div data-role="content">欢迎访问公司!我公司是专业制作手机app的软件公司。</div>
         <div data-role="footer" class="ui-btn">
         	<a data-role="button" href="#home">公司简介</a>
            <a data-role="button" href="#page1">技术力量</a>
            <a data-role="button" href="#page2">联系方式</a>
            <a data-role="button" href="#page3">通讯录</a>
         </div>
    </div>
    
    <div data-role="page" id="page1">
    	<div data-role="header">
        	<a data-role="button" href="#home" data-icon="home">主页</a>
        	<h4>技术力量</h4>
         	<a data-role="button" href="#home" data-icon="search">搜索</a>
         </div>
         <div data-role="content">公司有专业设计师、软件开发工程师数十名。</div>
         <div data-role="footer" class="ui-btn">
         	<a data-role="button" href="#home">公司简介</a>
            <a data-role="button" href="#page1">技术力量</a>
            <a data-role="button" href="#page2">联系方式</a>
            <a data-role="button" href="#page3">通讯录</a>
         </div>
    </div>
    
    <div data-role="page" id="page2">
    	<div data-role="header">
        	<a data-role="button" href="#home" data-icon="home">主页</a>
        	<h4>联系方式</h4>
         	<a data-role="button" href="#home" data-icon="search">搜索</a>
         </div>
         <div data-role="content">QQ:23110134。</div>
         <div data-role="footer" class="ui-btn">
         	<a data-role="button" href="#home">公司简介</a>
            <a data-role="button" href="#page1">技术力量</a>
            <a data-role="button" href="#page2">联系方式</a>
            <a data-role="button" href="#page3">通讯录</a>
         </div>
    </div>
    
    <div data-role="page" id="page3">
    	<div data-role="header">
        	<a data-role="button" href="#home" data-icon="home">主页</a>
        	<h4>通讯录</h4>
         	<a data-role="button" href="#home" data-icon="search">搜索</a>
         </div>
         <div data-role="content">
         	<ul data-role="listview" data-autodividers="true" data-inset="true" data-filter="true" data-filter-placeholder="搜索姓名...">
                <li>Bill Gates</li>
                <li>James Wang</li>
                <li>Jeff Chen</li>
                <li>陈安国 欧巴</li>
            </ul>
         </div>
         <div data-role="footer" class="ui-btn">
         	<a data-role="button" href="#home">公司简介</a>
            <a data-role="button" href="#page1">技术力量</a>
            <a data-role="button" href="#page2">联系方式</a>
            <a data-role="button" href="#page3">通讯录</a>
         </div>
    </div>
                
    </body>
    </html>
    
  • 相关阅读:
    fullPage.js学习笔记
    jQuery.extend()方法和jQuery.fn.extend()方法源码分析
    jQuery时间轴插件timeline.js
    JQuery插件:ScrollTo平滑滚动到页面指定位置
    Font Awesome,一套绝佳的图标字体库和CSS框架
    WOW.js – 让页面滚动更有趣
    Git客户端(TortoiseGit)基本使用详解
    Turn.js 实现翻书效果的学习与总结
    CSS中的float布局
    爬虫神器——异步爬虫
  • 原文地址:https://www.cnblogs.com/cag2050/p/5084409.html
Copyright © 2011-2022 走看看