为了更好的提升用户体验,移动端逐渐出了许多的移动端的框架,比如Sencha Touch、JQTouch、Jquery-moblie、jqMobi等等。这些框架都有优缺点,不同的框架应用在不同的项目中。现简单阐述一下各框架的优缺点: 一、Sencha Touch框架是一个重量级的框架、它上手较难,代码复杂,并且需要较强的程序基础才能学习,最开始的时候因为一个项目,想使用Sencha Touch框架,后来工期实在太紧张,根本没时间学习它并使用。所以最后转投其他框架。这个框架兼容性很高,运行起来的速度一般,需要长时间的学习且需要水平较高的程序基础才行。所以不太适合前端制作人员的使用。我会在以后的机会单开一篇关于它的使用demo。 二、JQTouch是一个轻量级框架、纯jquery写法,上手比较容易,代码容易理解,加载速度也很快,缺点是配合的移动端效果插件较少,需要很多外部的插件相结合,另外,个别插件还需要解决与框架之间的兼容问题。它的最大的一个弊端就是可利用和变通的布局较少。 三、Jquery-moblie也是一个轻量级框架、纯jquery写法,上手容易,代码容易理解,但由于其绑定的前端效果插件过多,且代码结构有些臃 肿,造成加载速度很慢。尤其是在android系统上测试,速度很慢。用户体验效果不太好,它比较适合开发IPAD或是IOS系统的高端机型。 四、jqMobi也是一个轻量级框架、它的语言基于jquery语言。并对其进行了简化,更有利于在移动设备上进行应用,并且速度很流畅。上手也比较容…
移动前端工作的那些事—前端制作篇之框架篇–jQTouch框架
<!doctype html> <html> <head> <meta charset="UTF-8" /> <title>jQTouch β</title> <style type="text/css" media="screen"> @import "css/jqtouch.css"; </style> <script src="js/jquery-1.4.2.min.js" type="text/javascript" charset="utf-8"></script> <script src="js/jqtouch.js" type="application/x-javascript" charset="utf-8"></script> <script type="text/javascript" charset="utf-8"> var jQT = new $.jQTouch({ icon: 'jqtouch.png', icon4: 'jqtouch4.png', addGlossToIcon: false, startupScreen: 'jqt_startup.png', statusBar: 'black', preloadImages: [ '../../themes/jqt/img/activeButton.png', '../../themes/jqt/img/back_button.png', '../../themes/jqt/img/back_button_clicked.png', '../../themes/jqt/img/blueButton.png', '../../themes/jqt/img/button.png', '../../themes/jqt/img/button_clicked.png', '../../themes/jqt/img/grayButton.png', '../../themes/jqt/img/greenButton.png', '../../themes/jqt/img/redButton.png', '../../themes/jqt/img/whiteButton.png', '../../themes/jqt/img/loading.gif' ] }); </script> </head> <body> <div id="jqt"> <!--首页--> <div id="home" class="current" > <div class="levis"><a href="#weibofenxiang" class="flipleft">微博分享</a></div> </div> <!--微博分享--> <div id="weibofenxiang"> <div class="levis"><a href="#home">首页</a></div> </div> </div> </body> </html>
var jQT = new $.jQTouch({ icon: 'jqtouch.png', icon4: 'jqtouch4.png', addGlossToIcon: false, startupScreen: 'jqt_startup.png', statusBar: 'black', preloadImages: [ '../../themes/jqt/img/activeButton.png', '../../themes/jqt/img/back_button.png', '../../themes/jqt/img/back_button_clicked.png', '../../themes/jqt/img/blueButton.png', '../../themes/jqt/img/button.png', '../../themes/jqt/img/button_clicked.png', '../../themes/jqt/img/grayButton.png', '../../themes/jqt/img/greenButton.png', '../../themes/jqt/img/redButton.png', '../../themes/jqt/img/whiteButton.png', '../../themes/jqt/img/loading.gif' ] });
<!--首页--> <div id="home" class="current" > <div class="levis"><a href="#weibofenxiang" class="flipleft">微博分享</a></div> </div> <!--微博分享--> <div id="weibofenxiang"> <div class="levis">"><a href="#home">首页</a></div> </div>