zoukankan      html  css  js  c++  java
  • jQueryMobile的按钮样式

    好吧,已经学了jQueryMobile一年了,今天心血来潮,想要写一篇关于jQueryMobile的博客文章,记得去年暑假在公司实习jQueryMobile,想一想真是怀念当时还是菜鸟的自己,年轻就是任性呀(笑~),好了,关于jQueryMobile方面的概念知识,大家可以去网上查阅相关资料,今天我写了一些jQueryMobile的按钮样式,还是比较漂亮的,代码如下:

    <!DOCTYPE html>
    <html>
    <head lang="en">
        <meta http-equiv="content-type" content="text/html;charset=utf-8" />
        <meta name="viewport" content="width=device-width,initial-scale=1">
        <link rel="stylesheet" type="text/css" href="css/jquery.mobile.flatui.css" />
        <script src="js/jquery.js"></script>
        <script src="js/jquery.mobile-1.4.0-rc.1.js"></script>
        <title>Flat</title>
    </head>
    <body>
        <div data-role="page">
            <div data-role="header" data-theme="f">
                <h1>DOTA资料大全</h1>
            </div>
            <div data-role="content">
                <a href="#" data-theme="a" data-icon="flat-settings" data-role="button">英雄简介</a>
                <a href="#" data-theme="b" data-icon="flat-new" data-role="button">物品资料</a>
                <a href="#" data-theme="c" data-icon="flat-man" data-role="button">经典出装</a>
                <a href="#" data-theme="d" data-icon="flat-mail" data-role="button">野怪资料</a>
                <a href="#" data-theme="e" data-icon="flat-bubble" data-role="button">教学视频</a>
                <a href="#" data-theme="f" data-icon="flat-menu" data-role="button">经典解说</a>
                <a href="#" data-theme="g" data-icon="flat-heart" data-role="button">明星专访</a>
                <a href="#" data-theme="g" data-icon="flat-time" data-role="button">关于作者</a>
            </div>
    
        </div>
    
    </body>
    </html>

    网页效果如下图:

  • 相关阅读:
    x64汇编第三讲,64位调用约定与函数传参.
    【Unity】6.7 向量和Vector3类
    【Unity】6.6 Random类
    【Unity】6.5 Time类、Mathf类、Coroutine类
    【Unity】6.4 Transform--移动、旋转和缩放游戏对象
    【Unity】6.3 通过 C# 脚本创建和访问游戏对象
    【Unity】6.2 在VS2015中调试 C# 脚本
    【Unity】6.1 Unity中的C#脚本基础知识
    【Unity】第6章 Unity脚本开发基础
    【Unity】4.7 摄像机
  • 原文地址:https://www.cnblogs.com/abelsu/p/4543504.html
Copyright © 2011-2022 走看看