Skip to content

Commit 3951ffb

Browse files
authored
Lock external files (#144)
* FIx first demo * Fix second demo * Build * Build * fix lint * Fix readme
1 parent e2570d0 commit 3951ffb

36 files changed

+14393
-4760
lines changed

README.md

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Interactive Repulsion Effect with Three.js
22

3-
[![Dependabot Status](https://api.dependabot.com/badges/status?host=github&repo=iondrimba/interactive-repulsive-effect)](https://dependabot.com)
4-
53
A tutorial on how to recreate the interactive repulsion effect of grid items seen in BestServedBold's Dribbble shot ["Holographic-Interactions"](https://dribbble.com/shots/5515695-Holographic-Interactions). By Ion D. Filho.
64

75
![Image Title](https://raw.githubusercontent.com/iondrimba/images/master/perrin.gif)
@@ -10,10 +8,12 @@ A tutorial on how to recreate the interactive repulsion effect of grid items see
108

119
[Demo](https://tympanus.net/Tutorials/InteractiveRepulsionEffect/)
1210

13-
### Requirements
14-
* nodejs 8+
11+
## Requirements
12+
13+
* nodejs 14+
1514

1615
### Contents
16+
1717
````bash
1818
first-demo/ and second-demo/
1919
src/
@@ -25,32 +25,40 @@ first-demo/ and second-demo/
2525
LICENSE
2626
README.md
2727
````
28+
2829
### Installation
30+
2931
```sh
30-
$ cd first-demo or second-demo
31-
$ npm install
32-
$ npm start
32+
cd first-demo or second-demo
33+
npm install
34+
npm start
3335
```
36+
3437
### Build
38+
3539
```sh
36-
$ cd first-demo or second-demo
37-
$ npm run build
40+
cd first-demo or second-demo
41+
npm run build
3842
```
43+
3944
### output folder
45+
4046
````bash
4147
first-demo/ and second-demo/
4248
public/
4349
app.##hash##.js
4450
app.##hash##.css
4551
index.html
4652
````
53+
4754
## Credits
4855

4956
* [Threejs](https://threejs.org/)
5057
* [TweenMax](https://greensock.com/tweenmax)
5158
* [RoundedBox Mesh](https://github.com/pailhead/three-rounded-box)
5259

5360
## License
61+
5462
This resource can be used freely if integrated or build upon in personal or commercial projects such as websites, web apps and web templates intended for sale. It is not allowed to take the resource "as-is" and sell it, redistribute, re-publish it, or sell "pluginized" versions of it. Free plugins built using this resource should have a visible mention and link to the original work. Always consider the licenses of all included libraries, scripts and images used.
5563

5664
## Misc
@@ -59,5 +67,4 @@ Follow Ion Drimba Filho: [Twitter](https://twitter.com/code__music), [Codepen](h
5967

6068
Follow Codrops: [Twitter](http://www.twitter.com/codrops), [Facebook](http://www.facebook.com/codrops), [Google+](https://plus.google.com/101095823814290637419), [GitHub](https://github.com/codrops), [Pinterest](http://www.pinterest.com/codrops/), [Instagram](https://www.instagram.com/codropsss/)
6169

62-
6370
[© Codrops 2018](http://www.codrops.com)

first-demo/.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
[*]
8+
end_of_line = lf
9+
charset = utf-8
10+
trim_trailing_whitespace = true
11+
insert_final_newline = true
12+
indent_style = space
13+
indent_size = 2
14+
15+
[*.{diff,md}]
16+
trim_trailing_whitespace = false

first-demo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Repulsive Force Interaction demo on a grid of elements inside a 3D world using T
1515
* [RoundedBox Mesh](https://github.com/pailhead/three-rounded-box)
1616

1717
## License
18+
1819
This resource can be used freely if integrated or build upon in personal or commercial projects such as websites, web apps and web templates intended for sale. It is not allowed to take the resource "as-is" and sell it, redistribute, re-publish it, or sell "pluginized" versions of it. Free plugins built using this resource should have a visible mention and link to the original work. Always consider the licenses of all included libraries, scripts and images used.
1920

2021
## Misc
@@ -23,5 +24,4 @@ Follow Ion Drimba Filho: [Twitter](https://twitter.com/code__music), [Codepen](h
2324

2425
Follow Codrops: [Twitter](http://www.twitter.com/codrops), [Facebook](http://www.facebook.com/codrops), [Google+](https://plus.google.com/101095823814290637419), [GitHub](https://github.com/codrops), [Pinterest](http://www.pinterest.com/codrops/), [Instagram](https://www.instagram.com/codropsss/)
2526

26-
2727
[© Codrops 2018](http://www.codrops.com)

0 commit comments

Comments
 (0)