当前位置: 编程技术>移动开发
本页文章导读:
▪jquerymobile 一个容易的九宫格实现(Gallery) jquerymobile 一个简单的九宫格实现(Gallery)
jquerymobile实现一个简单的九宫格代码如下:
效果如下:
index.html页面代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta char.........
▪ ARC forbids explicit message send of'release 异常 ARC forbids explicit message send of'release 错误
ARC forbids explicit message send of'release'
'release' is unavailable: not available inautomatic reference counting mode
由于ARC是内存自动管理的,所以不需要手动释放内存了.........
▪ 手机发送短信采取的技术 手机发送短信采用的技术
<p>手机发送短信采用的技术</p><p>1,可以参考下列网址:</p><p>http://blog.csdn.net/yangzl0123/article/details/5339263</p><p>2,可以查看使用下列软.........
[1]jquerymobile 一个容易的九宫格实现(Gallery)
来源: 互联网 发布时间: 2014-02-18
jquerymobile 一个简单的九宫格实现(Gallery)
jquerymobile实现一个简单的九宫格代码如下:
效果如下:
index.html页面代码如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>jQuery Mobile Examples - JQM Gallery </title> <link rel="stylesheet" href="/blog_article/jquery.mobile/jquery.mobile-1.0.1.min.css" /> <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" /> <link rel="stylesheet" href="/blog_article/style.css" type="text/css" /> <script src="/blog_article/jquery.mobile/jquery-1.6.4.min"></script> <script src="/blog_article/jquery.mobile/jquery.mobile-1.0.1.min.js"></script> </head> <body> <div data-role="page" data-theme="a" id="jqm-home"> <div data-role="header"> <h1>业务管理</h1> </div> <div data-role="content" data-theme="b"> <section > <ul > <li > <a href="#"><img src="/blog_article/images/shoppingcart.png"/> <h3>故障管理</h3> </a> </li> <li > <a href="#"><img src="/blog_article/images/2.png"/> <h3>工单管理</h3> </a> </li> <li > <a href="#"><img src="/blog_article/images/3.png"/> <h3>资产属性</h3> </a> </li> <li > <a href="#"><img src="/blog_article/images/4.png"/> <h3>资产状态</h3> </a> </li> <li > <a href="#"><img src="/blog_article/images/5.png"/> <h3>资产看板</h3> </a> </li> <li > <a href="#"><img src="/blog_article/images/6.png"/> <h3>故障上报</h3> </a> </li> <li > <a href="#"><img src="/blog_article/images/7.png"/> <h3>备品备件</h3> </a> </li> <li > <a href="#"><img src="/blog_article/images/8.png"/> <h3>采购申请</h3> </a> </li> </ul> </div> </div> </body> </html>
css样式代码如下:
.clearfix:after {
visibility: hidden;
display: block;
content: "";
clear: both;
}
.gallery{
float: left;
width:100%;
}
.gallery-entries{
list-style:none;
padding:0;
float: left;
}
.gallery-entries .gallery-item{
float: left;
margin-right:1%;
margin-bottom:2%;
}
.gallery-entries .gallery-item img{
-webkit-box-shadow: #999 0 3px 5px;
-moz-box-shadow: #999 0 3px 5px;
box-shadow: #999 0 3px 5px;
border: 1px solid #fff;
max-width:100%;
width: 80px;
height: 80px;
}
.gallery-entries .gallery-item a{
font-weight:normal;
text-decoration:none;
}
.gallery-entries .gallery-item a h3{
width:80px;
white-space:nowrap;
font-size:1em;
overflow: hidden;
text-overflow:ellipsis;
padding-top:3px;
align:center;
}
.gallery-entries .gallery-item a:hover h3, .gallery-entries .gallery-item a:active h3{
text-decoration:underline;
}
[2] ARC forbids explicit message send of'release 异常
来源: 互联网 发布时间: 2014-02-18
ARC forbids explicit message send of'release 错误
ARC forbids explicit message send of'release'
'release' is unavailable: not available inautomatic reference counting mode
由于ARC是内存自动管理的,所以不需要手动释放内存了。这里编译器编译不通过,如果你必须要通过,那么可以对项目进行设置:
单击项目根目录---》找到"Build Settings" ---》找到Objective-C Automatic Reference Counting项,选择为“no”
[3] 手机发送短信采取的技术
来源: 互联网 发布时间: 2014-02-18
手机发送短信采用的技术
<p>手机发送短信采用的技术</p>
<p>1,可以参考下列网址:</p>
<p>http://blog.csdn.net/yangzl0123/article/details/5339263</p>
<p>2,可以查看使用下列软件</p>
<p>短,信,猫 有相关的API</p>
图片缩略图
参考网站:
http://gwenchen.blog.sohu.com/87737762.html
<p>手机发送短信采用的技术</p>
<p>1,可以参考下列网址:</p>
<p>http://blog.csdn.net/yangzl0123/article/details/5339263</p>
<p>2,可以查看使用下列软件</p>
<p>短,信,猫 有相关的API</p>
图片缩略图
参考网站:
http://gwenchen.blog.sohu.com/87737762.html
最新技术文章: