Skip to content

Commit 88c8322

Browse files
committed
initial commit
1 parent 869830a commit 88c8322

26 files changed

+1208
-2
lines changed

.babelrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"presets": ["@babel/preset-env"],
3+
"plugins": [
4+
"@babel/plugin-syntax-dynamic-import",
5+
"@babel/plugin-proposal-class-properties"
6+
]
7+
}

.browserslistrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[production staging]
2+
>5%
3+
last 2 versions
4+
Firefox ESR
5+
not ie < 11
6+
7+
[development]
8+
last 1 chrome version
9+
last 1 firefox version
10+
last 1 edge version

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.eslintignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
!.*
2+
dist
3+
_notes
4+
node_modules
5+
coverage/**/*.*
6+
*.config.js
7+
.*.js

.eslintrc.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
es2021: true,
5+
},
6+
extends: ['eslint:recommended'],
7+
parserOptions: {
8+
ecmaVersion: 13,
9+
sourceType: 'module',
10+
},
11+
rules: {
12+
indent: ['error', 2],
13+
'linebreak-style': ['error', 'unix'],
14+
quotes: ['error', 'single'],
15+
semi: ['error', 'always'],
16+
},
17+
settings: {
18+
'import/resolver': {
19+
webpack: {
20+
config: "config/webpack.common.js"
21+
}
22+
}
23+
}
24+
};

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
_notes
2+
.DS_Store
3+
.phpintel
4+
node_modules
5+
examples
6+
yarn.lock

.prettierignore

Whitespace-only changes.

.prettierrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"printWidth": 80,
3+
"tabWidth": 2,
4+
"useTabs": false,
5+
"semi": true,
6+
"singleQuote": true,
7+
"trailingComma": "es5",
8+
"bracketSpacing": true,
9+
"arrowParens": "always"
10+
}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Changelog
2+
3+
## v0.1.0
4+
### Added or Changed
5+
- The initial version
6+
- completely rewritten code from an old project (year 2012)

README.md

Lines changed: 72 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,72 @@
1-
# zero2one
2-
Animation: animates from 0 to 1 in a specific time with a defined acceleration (easing) function
1+
<a name="readme-top"></a>
2+
3+
<!-- PROJECT SHIELDS -->
4+
[![LinkedIn][linkedin-shield]][linkedin-url]
5+
6+
<!-- PROJECT LOGO -->
7+
<br />
8+
<div align="center">
9+
<a href="https://github.com/lemon3/birthdaypicker">
10+
<img src="https://raw.githubusercontent.com/lemon3/birthdaypicker/main/_assets/images/logo.svg" alt="Logo" width="360" height="auto">
11+
</a>
12+
<h3 align="center">a small animation helper</h3>
13+
</div>
14+
15+
<!-- TABLE OF CONTENTS -->
16+
<details>
17+
<summary>Table of Contents</summary>
18+
<ol>
19+
<li>
20+
<a href="#about-the-project">About The Project</a>
21+
</li>
22+
<li>
23+
<a href="#usage">Usage</a>
24+
</li>
25+
<li>
26+
<a href="#license">License</a>
27+
</li>
28+
<li>
29+
<a href="#contact">Contact</a>
30+
</li>
31+
</ol>
32+
</details>
33+
34+
<!-- ABOUT THE PROJECT -->
35+
## About The Project
36+
I started this project in 2012. Now I have completely rewritten the code.
37+
38+
### Features
39+
* Coded in vanilla JS.
40+
* easing
41+
* Zero2One is dependency-free
42+
43+
<p align="right">(<a href="#readme-top">back to top</a>)</p>
44+
45+
<!-- USAGE EXAMPLES -->
46+
## Usage
47+
### First Steps
48+
tbd
49+
50+
<p align="right">(<a href="#readme-top">back to top</a>)</p>
51+
52+
<!-- LICENSE -->
53+
## License
54+
55+
Distributed under the MIT License. See `LICENSE.txt` for more information.
56+
57+
<p align="right">(<a href="#readme-top">back to top</a>)</p>
58+
59+
<!-- CONTACT -->
60+
## Contact
61+
62+
Wolfgang Jungmayer - [email protected]
63+
64+
Project Link: [https://github.com/lemon3/zero2one](https://github.com/lemon3/zero2one)
65+
66+
<p align="right">(<a href="#readme-top">back to top</a>)</p>
67+
68+
<div align="center">coded with ❤ in vienna<br>by wolfgang jungmayer</div>
69+
70+
<!-- MARKDOWN LINKS & IMAGES -->
71+
[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555
72+
[linkedin-url]: https://www.linkedin.com/in/wolfgangjungmayer/

0 commit comments

Comments
 (0)