├── .gitignore
├── 404.jade
├── README.html
├── README.md
├── _layout.jade
├── compare
└── three.png
├── data
├── fututhreeyear-data-three.png
└── fututhreeyear-data-year.png
├── examples
├── fututhreeyear.html
└── macnnscreen.html
├── export-data-png.html
├── images
├── fututhreeyear
│ ├── three-final.png
│ └── year-final.png
├── macnnscreen
│ ├── mac-final.png
│ └── mac-init.png
├── macscreen
│ ├── 0.png
│ ├── 1.png
│ ├── 10.png
│ ├── 11.png
│ ├── 12.png
│ ├── 13.png
│ ├── 14.png
│ ├── 15.png
│ ├── 16.png
│ ├── 17.png
│ ├── 18.png
│ ├── 19.png
│ ├── 2.png
│ ├── 20.png
│ ├── 3.png
│ ├── 4.png
│ ├── 5.png
│ ├── 6.png
│ ├── 7.png
│ ├── 8.png
│ ├── 9.png
│ └── reset20.png
├── phonescreen
│ └── phone-cover.png
├── three
│ ├── 1.png
│ ├── 10.png
│ ├── 11.png
│ ├── 12.png
│ ├── 13.png
│ ├── 14.png
│ ├── 15.png
│ ├── 16.png
│ ├── 17.png
│ ├── 18.png
│ ├── 19.png
│ ├── 2.png
│ ├── 20.png
│ ├── 21.png
│ ├── 22.png
│ ├── 23.png
│ ├── 24.png
│ ├── 25.png
│ ├── 26.png
│ ├── 27.png
│ ├── 28.png
│ ├── 29.png
│ ├── 3.png
│ ├── 30.png
│ ├── 31.png
│ ├── 32.png
│ ├── 33.png
│ ├── 34.png
│ ├── 35.png
│ ├── 36.png
│ ├── 37.png
│ ├── 4.png
│ ├── 5.png
│ ├── 6.png
│ ├── 7.png
│ ├── 8.png
│ ├── 9.png
│ └── final.png
└── year
│ ├── 1.png
│ ├── 10.png
│ ├── 11.png
│ ├── 12.png
│ ├── 13.png
│ ├── 14.png
│ ├── 15.png
│ ├── 16.png
│ ├── 17.png
│ ├── 18.png
│ ├── 19.png
│ ├── 2.png
│ ├── 20.png
│ ├── 21.png
│ ├── 22.png
│ ├── 23.png
│ ├── 24.png
│ ├── 25.png
│ ├── 26.png
│ ├── 27.png
│ ├── 28.png
│ ├── 29.png
│ ├── 3.png
│ ├── 30.png
│ ├── 31.png
│ ├── 32.png
│ ├── 4.png
│ ├── 5.png
│ ├── 6.png
│ ├── 7.png
│ ├── 8.png
│ └── 9.png
├── import-data-png.html
├── index.jade
├── js
├── futunnscreen-compute.js
├── fututhreeyear-compute.js
├── fututhreeyear-data.js
└── macnnscreen-data.js
├── main.less
├── package.json
└── tool.html
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .idea
3 |
--------------------------------------------------------------------------------
/404.jade:
--------------------------------------------------------------------------------
1 | h1 404
2 | h3 Whoops. Looks like what you're looking for can't be found.
--------------------------------------------------------------------------------
/README.html:
--------------------------------------------------------------------------------
1 |
PxDiffFrameAnimation
1018 | © Young 2015-12-07 15:27
1019 | Welcome to My GitHub
1020 | How To Use
1021 |
1022 | - run
npm install -g harp
command in your system.
1023 | - run
npm install
command in the root path of this project.
1024 | - run
harp server
command in the root path of this project.
1025 | - visit url
http://localhost:9000/examples/fututhreeyear.html
to see the example or visit url http://localhost:9000/tool.html
to use the tool.
1026 |
1027 | Overview
1028 |
1029 | - The file which is named
tool.html
is a tool to get the data.
1030 | - The catalog which is named
examples
contains many frame animations developed by this technology.
1031 | - The catalog which is named
images
contains many images which are used in the examples.
1032 | - The catalog which is named
js
contains many javascript codes.
1033 |
1034 | Examples
1035 |
1038 |
1039 | The url is to test PxDiffFrameAnimation.Sometimes if you spent a lot of time to visit the link maybe there is a problem when the client loads images.Please refresh your web application if you meet this problem.And you can not visit this link by using a mobile phone because it can canuse a memory problem.I will solve the memory problem soon please be patient.
1040 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # PxDiffFrameAnimation
2 |
3 | © Young 2015-12-07 15:27
4 |
5 | Welcome to My [GitHub](https://github.com/newbieYoung)
6 |
7 | ### How To Use
8 |
9 | + run `npm install -g harp` command in your system.
10 | + run `npm install` command in the root path of this project.
11 | + run `harp server` command in the root path of this project.
12 | + visit urls to see the example or visit url `http://localhost:9000/tool.html` to use the tool.
13 |
14 | ### Overview
15 |
16 | + The file which is named `tool.html` is a tool to get the data.
17 | + The catalog which is named `examples` contains many frame animations developed by this technology.
18 | + The catalog which is named `images` contains many images which are used in the examples.
19 | + The catalog which is named `js` contains many javascript codes.
--------------------------------------------------------------------------------
/_layout.jade:
--------------------------------------------------------------------------------
1 | doctype
2 | html
3 | head
4 | link(rel="stylesheet" href="/main.css")
5 | body
6 | != yield
--------------------------------------------------------------------------------
/compare/three.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/newbieYoung/PxDiffFrameAnimation/eb3dc2cf57ddf8d5746539b73cd1b39f634339f9/compare/three.png
--------------------------------------------------------------------------------
/data/fututhreeyear-data-three.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/newbieYoung/PxDiffFrameAnimation/eb3dc2cf57ddf8d5746539b73cd1b39f634339f9/data/fututhreeyear-data-three.png
--------------------------------------------------------------------------------
/data/fututhreeyear-data-year.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/newbieYoung/PxDiffFrameAnimation/eb3dc2cf57ddf8d5746539b73cd1b39f634339f9/data/fututhreeyear-data-year.png
--------------------------------------------------------------------------------
/examples/fututhreeyear.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |