博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery mobile 的navbar自定义图标
阅读量:4946 次
发布时间:2019-06-11

本文共 1708 字,大约阅读时间需要 5 分钟。

css:
 
<
style
type
=
"text/css"
>
  
.nav-glyphish-example .ui-btn .ui-btn-inner { padding-top: 40px !important; }
  
.nav-glyphish-example .ui-btn .ui-icon { width: 30px!important; height: 30px!important; margin-left: -15px !important; box-shadow: none!important; -moz-box-shadow: none!important; -webkit-box-shadow: none!important; -webkit-border-radius: none !important; border-radius: none !important; }
  
#chat .ui-icon { background:  url(glyphish-icons/09-chat2.png) 50% 50% no-repeat; background-size: 24px 22px; }
  
#email .ui-icon { background:  url(glyphish-icons/18-envelope.png) 50% 50% no-repeat; background-size: 24px 16px;  }
  
#login .ui-icon { background:  url(glyphish-icons/30-key.png) 50% 50% no-repeat;  background-size: 12px 26px; }
  
#beer .ui-icon { background:  url(glyphish-icons/88-beermug.png) 50% 50% no-repeat;  background-size: 22px 27px; }
  
#coffee .ui-icon { background:  url(glyphish-icons/100-coffee.png) 50% 50% no-repeat;  background-size: 20px 24px; }
  
#skull .ui-icon { background:  url(glyphish-icons/21-skull.png) 50% 50% no-repeat;  background-size: 22px 24px; }
</
style
>
 
page:
 
<
div
data-role
=
"footer"
class
=
"nav-glyphish-example"
>
  
<
div
data-role
=
"navbar"
class
=
"nav-glyphish-example"
data-grid
=
"d"
>
    
<
ul
>
      
<
li
><
a
href
=
"#"
id
=
"chat"
data-icon
=
"custom"
>Chat</
a
></
li
>
      
<
li
><
a
href
=
"#"
id
=
"email"
data-icon
=
"custom"
>Email</
a
></
li
>
      
<
li
><
a
href
=
"#"
id
=
"skull"
data-icon
=
"custom"
>Danger</
a
></
li
>
      
<
li
><
a
href
=
"#"
id
=
"beer"
data-icon
=
"custom"
>Beer</
a
></
li
>
      
<
li
><
a
href
=
"#"
id
=
"coffee"
data-icon
=
"custom"
>Coffee</
a
></
li
>
   
</
ul
>
  
</
div
>
</
div
>

转载于:https://www.cnblogs.com/happyPawpaw/archive/2012/07/25/2607806.html

你可能感兴趣的文章
ffmpeg获取文件的总时长(mp3/mp4/flv等)
查看>>
Python virtualenvwrapper在Win下的安装和管理
查看>>
费马小定理
查看>>
mysql5.6 忘记root密码
查看>>
HTML 小练习(智联注册页)
查看>>
MSSQL优化之————探索MSSQL执行计划(转)
查看>>
使用DOS命令查找包含某一字符串的所有文件
查看>>
python强大的区间处理库interval用法介绍
查看>>
MVC开发中的常见错误-04-“System.NullReferenceException”类型的异常在 BBFJ.OA.WebApp.dll 中发生,但未在用户代码中进行处理...
查看>>
VS-常用的快捷键-总结
查看>>
如何在网页中用echarts图表插件做出静态呈现效果
查看>>
在Linux系统下挂载Windows上的共享文件夹
查看>>
【转】sizeof详解
查看>>
北京金隅男篮夺冠
查看>>
SQL SERVER-2008从入门到精通pdf
查看>>
如何发现自己的兴趣(转)
查看>>
正则表达式学习
查看>>
TB5上正常使用msfconsole
查看>>
python3-深浅复制
查看>>
android studio 布局
查看>>