- 浏览: 7371161 次
- 性别:
- 来自: 上海
-
文章分类
- 全部博客 (1546)
- 企业中间件 (236)
- 企业应用面临的问题 (236)
- 小布Oracle学习笔记汇总 (36)
- Spring 开发应用 (54)
- IBatis开发应用 (16)
- Oracle基础学习 (23)
- struts2.0 (41)
- JVM&ClassLoader&GC (16)
- JQuery的开发应用 (17)
- WebService的开发应用 (21)
- Java&Socket (44)
- 开源组件的应用 (254)
- 常用Javascript的开发应用 (28)
- J2EE开发技术指南 (163)
- EJB3开发应用 (11)
- GIS&Mobile&MAP (36)
- SWT-GEF-RCP (52)
- 算法&数据结构 (6)
- Apache开源组件研究 (62)
- Hibernate 学习应用 (57)
- java并发编程 (59)
- MySQL&Mongodb&MS/SQL (15)
- Oracle数据库实验室 (55)
- 搜索引擎的开发应用 (34)
- 软件工程师笔试经典 (14)
- 其他杂项 (10)
- AndroidPn& MQTT&C2DM&推技术 (29)
- ActiveMQ学习和研究 (38)
- Google技术应用开发和API分析 (11)
- flex的学习总结 (59)
- 项目中一点总结 (20)
- java疑惑 java面向对象编程 (28)
- Android 开发学习 (133)
- linux和UNIX的总结 (37)
- Titanium学习总结 (20)
- JQueryMobile学习总结 (34)
- Phonegap学习总结 (32)
- HTML5学习总结 (41)
- JeeCMS研究和理解分析 (9)
最新评论
-
lgh1992314:
[u][i][b][flash=200,200][url][i ...
看看mybatis 源代码 -
尼古拉斯.fwp:
图片根本就不出来好吧。。。。。。
Android文件图片上传的详细讲解(一)HTTP multipart/form-data 上传报文格式实现手机端上传 -
ln94223:
第一个应该用排它网关吧 怎么是并行网关, 并行网关是所有exe ...
工作流Activiti的学习总结(八)Activiti自动执行的应用 -
ZY199266:
获取不到任何消息信息,请问这是什么原因呢?
ActiveMQ 通过JMX监控Connection,Queue,Topic的信息 -
xiaoyao霄:
DestinationSourceMonitor 报错 应该导 ...
ActiveMQ 通过JMX监控Connection,Queue,Topic的信息
Titanium和JQuery整合的结构如下:
登录之后:
Titanium源代码如下:
App.js
/* * Single Window Application Template: * A basic starting point for your application. Mostly a blank canvas. * * In app.js, we generally take care of a few things: * - Bootstrap the application with any data we need * - Check for dependencies like device type, platform version or network connection * - Require and open our top-level UI component * */ //bootstrap and check dependencies if (Ti.version < 1.8 ) { alert('Sorry - this application template requires Titanium Mobile SDK 1.8 or later'); } else if (Ti.Platform.osname === 'mobileweb') { alert('Mobile web is not yet supported by this template'); } else { //require and open top level UI component var ApplicationWindow = require('ui/ApplicationWindow'); new ApplicationWindow().open(); }
ApplicationWindow.js
//Application Window Component Constructor function ApplicationWindow() { //load component dependencies var FirstView = require('ui/FirstView'); //create component instance var self = Ti.UI.createWindow({ backgroundColor:'#ffffff', navBarHidden:true, exitOnClose:true, title:'JQuery和Titanium的整合' }); //construct UI var tableview = new FirstView(); //Header var header = Titanium.UI.createView({ height:'50dp', backgroundColor:'#000', backgroundImage:'../images/title.png', top:'0dp' }); var header_lbl = Titanium.UI.createLabel({ text: '易程科技股份有限公司', color: '#fff', font: {fontSize: 22, fontWeight: 'bold'}, top:'5dp', height:'40dp' }); header.add(header_lbl); self.add(header); self.add(tableview); //Footer var footer = Titanium.UI.createView({ height:'50dp', backgroundColor:'#000', bottom:'0dp', backgroundImage:'../images/foot.png', }); var footer_lbl = Titanium.UI.createLabel({ text: '', color: '#fff', font: {fontSize: 22, fontWeight: 'bold'}, top:'5dp', height:'40dp' }); footer.add(footer_lbl); self.add(footer); return self; } //make constructor function the public component interface module.exports = ApplicationWindow;
FirstView.js
//FirstView Component Constructor function FirstView() { // Create an ImageView. var anImageView = Ti.UI.createImageView({ image : '../images/beforeforward.png', width : 50, height : 50 }); var data = [ { winId:'txxxt1', 'color':'#000000', 'backgroundColor':'#FAFAFA', title:'故障信息上报', url:'../htmls/html/index.html', data:JSON.stringify({title:'障处理'}), leftImage:"../images/w.bmp", hasChild: true }, { winId:'txxxt5', 'color':'#000000', 'backgroundColor':'#FAFAFA', title:'当前故障一览', url:'../htmls/html/index.html', data:JSON.stringify({title:'当前故障一览',type:4}), leftImage:"../images/w.bmp", rightImage:"./images/beforeforward.png", hasChild: true } ]; // Table var tableview= Ti.UI.createTableView({ data: data, top:'50dp', bottom:'50dp', //This is what I used to do to include a header/footer // headerView: header, // footerView: footer }); // create table view event listener tableview.addEventListener('click', function(e) { if(e.rowData.url) { //if(null==dataWins[e.rowData.winId]){ var win = Ti.UI.createWindow({windowSoftInputMode:Ti.UI.Android.SOFT_INPUT_ADJUST_RESIZE}); var webview = Ti.UI.createWebView({ url:e.rowData.url }); win.add(webview); var label = Ti.UI.createLabel({ text : 'loading....' }); label.addEventListener('click', function(ex) { webview.reload(); }); win.add(label); win.addEventListener('open', function(ex) { Ti.App.fireEvent('currWin', {view:webview}); }); webview.SysDatas=[e.rowData.url]; win.addEventListener('android:back', function(ex) { if(webview.SysDatas.length>1){ webview.url=webview.SysDatas[webview.SysDatas.length-2]; webview.SysDatas.splice(webview.SysDatas.length-1,1) return; } win.close(); webview.url=''; }); webview.addEventListener('load', function(ex) { win.remove(label); }); //} //是否采用模式窗体 win.open({ fullscreen : false,modal : true, animated : true, windowSoftInputMode : Ti.UI.Android.SOFT_INPUT_ADJUST_RESIZE, exitOnClose: true, navBarHidden:true, backgroundImage : '/images/default.png', }); } else if(e.rowData.href) { Titanium.Platform.openURL(e.rowData.href); } }); return tableview; } module.exports = FirstView;
index.html
<!DOCTYPE html> <html> <head> <title>易维云平台 首页</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script> <script type="text/javascript" charset="utf-8" src="../js/jquery.mobile-1.0a4.1.min.js"></script> <link rel="stylesheet" href="../css/jquery.mobile-1.0a4.1.min.css" type="text/css" /> <meta name="format-detection" content="telephone=no"/> </head> <style type="text/css"> p { font-size: 1.5em; font-weight: bold; } #submit{ float:right; margin:10px; } #toregist{ float:left; margin:10px; } </style> <body> <div data-role="page" id="main" data-theme="b" > <!-- header --> <div data-role="header" class="header" data-theme="b" > <h3> 易维云平台 </h3> </div> <!-- /header --> <div data-role="content" class="content" data-theme="b" data-position="fixed" > <p style="text-align: center;"><font color="#2EB1E8" ></font></p> <form method="post" id="loginform"> <label for="username" >用户名:</label> <input type="text" name="username" id="username" value="请输入注册的手机号码" /> <label for="password" >密 码:</label> <input type="password" name="password" id="password" value="请输入登录密码" /> <fieldset data-role="controlgroup" > <input type="checkbox" name="checkbox-1" id="checkbox-1" class="custom" /> <label for="checkbox-1">保持登录状态</label> </fieldset> <a href="../html/register.html" data-role="button" id="toregist" data-theme="e">注册</a> <a data-role="button" id="submit" data-theme="b" href="../html/taskmgr.html" >登录</a> </form> </div> <div style="width: 100%;height: auto;"> <br/> <br/> <br/> </div> <div data-role="footer" class="footer" data-theme="b" data-position="fixed" > <img alt="" src="../../logo.gif" /> </div> </div> </body> </html>
发表评论
-
phonegap contact API的使用
2012-07-10 14:23 2930没事开发一个phonegap通讯录使用: js如 ... -
phonegap开发中必备的帮助文档android apk
2012-07-08 16:48 2680在phonegap配置jquerymobile开发的人 ... -
jquerymobile 开发中几个样式问题
2012-07-07 15:16 24971.在jquerymobile开发中如果遇到中文乱码处理如下 ... -
【转】JavaScript编程模式:模块的力量
2012-07-06 12:50 1905块模式是一个常用的JavaScript编程模式。它 ... -
【转】JavaScript闭包和模块模式
2012-07-06 12:45 2074原文:http://www.joezimj ... -
【转】PhoneGap域名白名单说明书(Domain Whitelist Guide)
2012-07-05 17:31 9923概述Cordova项目中的域名白名单是一个用来控制外部域名访问 ... -
phonegap拍照的获取图片和设置问题
2012-07-05 17:10 12866目前项目中Android中第一次加载使用用 ... -
Native+WebApp中Phonegap调用Android Activity
2012-07-05 16:10 11016在项目采用Native+Web方式开发,A ... -
IOS Xcode4.3使用中几个问题
2012-07-04 15:36 19361. xcode 4.3.2 编译生成的app放在哪里? ... -
PhoneGap Xcode iOS入门教程
2012-07-04 15:30 7838文介绍了利用Xcode建立PhoneGap应用程 ... -
phonegap底层原理学习和研究(四)
2012-06-12 17:34 3114在phonegap ... -
phonegap底层原理学习和研究(三)
2012-06-12 17:08 6308针对Phonegap开发中常用的D ... -
phonegap底层原理学习和研究(二)
2012-06-11 11:07 3208转载自IBM中国开发网站: http://www.ibm ... -
【转】手机应用开发者需注意的20个事项
2012-05-30 10:54 1877你想要成为手机开发者吗?你的目标可能是从应用商店中赚取大 ... -
【转】8 个移动产品设计必备网站
2012-05-30 09:49 2179本文整理了8个移动设计资源丰富的网站,希望对你的开发设计工作有 ... -
HTML5 canvas实现电子签名
2012-05-29 17:27 227701.为什么要用到BASE64编码的图片信息 Base6 ... -
HTML5 的GEOLocation的API
2012-05-29 10:15 7208Geolocation API用于将用户当前地理位 ... -
jquerymobile 一个简单的九宫格实现(Gallery)
2012-05-28 11:10 9347jquerymobile实现一个简单的九宫格代码如下: ... -
phonegap底层原理学习和研究(一)
2012-05-21 14:16 12102在phonegap中,通过android和ip ... -
jquerymobile google地图插件jquery-ui-map
2012-05-20 16:12 5994最近要开发地图相关的功能,学习一下jquerymob ...
相关推荐
总的来说,`Tabber`是一个快速上手、易于整合的选项卡插件,对于需要简单选项卡功能的项目,它是一个很好的选择。不过,随着前端技术的发展,你可能需要考虑使用更新的、功能更丰富的库,如Bootstrap的Tab组件或其他...
在萌芽阶段,中间件框架如PhoneGap,框架如jQuery Mobile、Sencha Touch、Titanium开始出现。成熟阶段中,AngularJS、MVVM框架和Ionic框架的出现标志着HTML5 Hybrid App开发的最佳实践。到了创新阶段,React.js和...
通过阅读和理解"bold-viewer-master"压缩包中的源代码,我们可以深入了解其具体实现细节,包括如何整合HTML5、jQuery以及可能用到的其他库,如Modernizr(检测HTML5和CSS3功能的支持情况)或Hammer.js(用于处理触摸...
8. **前端交互**:使用jQuery或现代前端框架如React或Vue.js,实现用户界面的动态更新和异步数据请求。 9. **错误处理**:设置全局错误处理器,确保即使在出错时也能返回合适的HTTP状态码和错误信息。 10. **部署...
- viaCEP可能使用了像jQuery的`$.ajax`,或现代浏览器的`fetch` API进行异步数据获取。理解这些库的工作原理对于有效使用viaCEP插件至关重要。 - 使用异步请求避免了页面加载延迟,提高了用户体验。 5. **事件...
7. **外部资源**:可能包含链接到外部库(如jQuery)或服务(如Google Fonts、Font Awesome图标库)的文件,展示如何整合外部资源到个人网页。 8. **Markdown语言**:如果包含.md文件,说明可能有使用Markdown编写...
它删除了对jQuery的依赖,增强了内置的CSS和JavaScript功能,同时提供了一套完整的网格系统、组件和自定义选项。Bootstrap5的主要目标是简化开发流程,提高网页的响应性和可访问性。 **二、响应式布局** 在...