open page

This commit is contained in:
lxsang
2018-09-13 00:41:06 +02:00
parent 44e8c018ac
commit 18e0db7253
13 changed files with 3428 additions and 0 deletions

View File

@ -0,0 +1,24 @@
# OpenPage
This is an example project, generated by AntOS Development Kit
## Howto
1. Open the project.apj file with AntOSDK (simply double Click on it)
2. Modify the UI in *assets/scheme.html*
3. Modify application code in *coffees/main.coffee*
4. Modify CSS style in *css/main.css*
5. Other files need to be copied: put in to assets
## Set up build target
Click **Menu> Build > Build Option** or simply hit **ALT-Y**
In the build options dialog, add or remove files that need to be
included into the build
Click **Save**
## Build application
* To build: **Menu > Build > Build** or **ALT-C**
* To build and run: **Menu > Build > Build and Run** or **CTRL-R**
* To release: **Menu > Build > Build release** or **ALT-P**

View File

@ -0,0 +1,7 @@
afx-app-window[data-id="OpenPage"] div[data-id="container"]
{
overflow: auto;
margin:0 auto;
padding:0px
}

1670
OpenPage/build/debug/main.js Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,13 @@
{
"app":"OpenPage",
"name":"OpenPage",
"description":"",
"info":{
"author": "",
"email": ""
},
"version":"0.0.1-a",
"category":"Other",
"iconclass":"fa fa-adn",
"mimes":["none"]
}

View File

@ -0,0 +1,7 @@
<afx-app-window apptitle="Open Page" width="600" height="500" data-id="OpenPage">
<afx-hbox >
<div data-id="container">
<div data-id="odfcanvas"></div>
</div>
</afx-hbox>
</afx-app-window>