step1:搭建confluence插件框架,使用dos命令atlas-create-confluence-plugin创建代码架构。 step2.进入myConfluenceMacro目录,执行dos atlas-run step3:浏览器访问:http://localhost:1990/conf ...
分类:
系统相关 时间:
2020-06-05 12:53:07
阅读次数:
99
jQuery Mobile 中的面板会在屏幕的左侧向右侧划出。 通过向指定 id 的 <div> 元素添加 data-role="panel" 属性来创建面板。 在 <div> 中添加 HTML 标记来显示你的面板内容: <div data-role="panel" id="myPanel"> <h ...
分类:
Web程序 时间:
2020-06-05 10:31:53
阅读次数:
105
导航栏是由一组水平排列的链接组成,通常包含在头部或尾部内。 默认情况下,导航栏中的链接将自动变成按钮(不需要 data-role="button")。 使用 data-role="navbar" 属性来定义导航栏: 实例 <div data-role="header"><div data-role= ...
分类:
Web程序 时间:
2020-06-05 10:26:25
阅读次数:
111
工具栏元素通常位于头部和尾部内 - 让导航易于访问: 头部栏 头部栏一般包含页面标题/logo 或一两个按钮(通常是首页、选项或搜索)。 您可以添加按钮到头部的左侧或右侧。 下面的代码,将添加一个按钮到头部标题文本的左侧,添加一个按钮到头部标题文本的右侧: 实例 <div data-role="he ...
分类:
Web程序 时间:
2020-06-05 10:21:11
阅读次数:
76
参考: 简书:Touch_end事件的触发时机 本来想做个虚拟摇杆,在摇杆UI上按下时摇杆运作,在任意舞台位置松开时摇杆停止。 但是无法检测到舞台松开的touch_end事件。 我设想了以下代码 //在摇杆上按下 this.vj.on(cc.Node.EventType.TOUCH_START, t ...
分类:
其他好文 时间:
2020-06-04 23:14:59
阅读次数:
220
Qt 所有版本官方下载地址 1.所有版本QT下载地址 : Index of /archive/qt 2. 所有Qt Creator下载地址: Index of /archive/qtcreator 3. 所有Qt VS开发插件下载地址: Index of /archive/vsaddin 4.Qt官 ...
分类:
其他好文 时间:
2020-06-02 21:40:06
阅读次数:
245
jQuery Mobile 是一个用于创建移动端web应用的的前端框架。 学习本教程前你需要先了解 在开始学习 jQuery Mobile 前, 你应该了解一下基础知识: HTML CSS jQuery 如果你想学习这些知识,你可以访问本站的首页。 什么是 jQuery Mobile? jQuery ...
分类:
Web程序 时间:
2020-06-02 19:15:55
阅读次数:
71
Mobile 应用程序是建立在您想要显示的简单的点击事物上。 在 jQuery Mobile 中创建按钮 在 jQuery Mobile 中,按钮可通过三种方式创建: 使用 <button> 元素 使用 <input> 元素 使用带有 data-role="button" 的 <a> 元素 <but ...
分类:
Web程序 时间:
2020-06-02 19:12:05
阅读次数:
80
在你的网页中添加 jQuery Mobile 你可以通过以下几种方式将jQuery Mobile添加到你的网页中: 从 CDN 中加载 jQuery Mobile (推荐) 从jQuerymobile.com 下载 jQuery Mobile库 从 CDN 中加载 jQuery Mobile 使用 ...
分类:
Web程序 时间:
2020-06-02 19:01:39
阅读次数:
89
开始学习 jQuery Mobile 实例 <body><div data-role="page"> <div data-role="header"> <h1>欢迎来到我的主页</h1> </div> <div data-role="main" class="ui-content"> <p>我现在是 ...
分类:
Web程序 时间:
2020-06-02 18:46:08
阅读次数:
113