anim-3d-obj 1.0.18 → 1.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -8
- package/package.json +13 -4
package/README.md
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
|
|
2
1
|
# React Typescript Cuboid Builder
|
|
3
2
|
|
|
4
3
|
This project allows a user to create Cuboids of any size simply by entering a set of parameters.
|
|
5
4
|
The program does the leg work with regard to calculating translationZ depth and config on the fly.
|
|
6
5
|
|
|
7
|
-
|
|
8
|
-
|
|
9
6
|
## Deployment
|
|
10
7
|
|
|
11
8
|
Install sequence
|
|
@@ -17,6 +14,7 @@ npm run start
|
|
|
17
14
|
```
|
|
18
15
|
|
|
19
16
|
## Examples
|
|
17
|
+
|
|
20
18
|
All sided simple https://codesandbox.io/s/anim-3d-obj-all-sides-simple-sdy1q0
|
|
21
19
|
|
|
22
20
|
Two sided simple https://codesandbox.io/s/anim-3d-obj-2-sides-simple-9wognm
|
|
@@ -27,8 +25,7 @@ speed wobble(y) 3 sides https://codesandbox.io/s/anim-3d-obj-3-sides-wobble-y-ax
|
|
|
27
25
|
|
|
28
26
|
## Authors
|
|
29
27
|
|
|
30
|
-
-
|
|
31
|
-
|
|
28
|
+
- [@mdnelles](https://github.com/mdnelles)
|
|
32
29
|
|
|
33
30
|
## Demo
|
|
34
31
|
|
|
@@ -65,7 +62,8 @@ const indivStyles: object = {
|
|
|
65
62
|
};
|
|
66
63
|
```
|
|
67
64
|
|
|
68
|
-
and
|
|
65
|
+
and
|
|
66
|
+
|
|
69
67
|
```
|
|
70
68
|
<Cuboid
|
|
71
69
|
width={260}
|
|
@@ -86,8 +84,8 @@ will produce the following
|
|
|
86
84
|
|
|
87
85
|

|
|
88
86
|
|
|
89
|
-
##Face Format
|
|
90
|
-
|
|
87
|
+
##Face Format for things like `background-image: url("myImg.png");` they can be done in `moreStyles` argument.
|
|
88
|
+
|
|
91
89
|
```
|
|
92
90
|
const Specs: any = styled.div`
|
|
93
91
|
opacity: ${!!opac ? opac : globalStyles.opac};
|
|
@@ -106,3 +104,7 @@ for things like `background-image: url("myImg.png");` they can be done in `moreS
|
|
|
106
104
|
${moreStyles}
|
|
107
105
|
`;
|
|
108
106
|
```
|
|
107
|
+
|
|
108
|
+
## keywords
|
|
109
|
+
|
|
110
|
+
React CSS style animation cube cuboid 3d
|
package/package.json
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"name": "anim-3d-obj",
|
|
3
3
|
"repository": {
|
|
4
4
|
"type": "git",
|
|
5
|
-
"url": "https://github.com/
|
|
5
|
+
"url": "https://github.com/mdnelles/Component-Libraryt"
|
|
6
6
|
},
|
|
7
|
-
"homepage": "https://github.com/mdnelles/anim-3d-objs",
|
|
8
|
-
"version": "1.0.
|
|
7
|
+
"homepage": "https://github.com/mdnelles/anim-3d-objs-launchers",
|
|
8
|
+
"version": "1.0.19",
|
|
9
9
|
"description": "A component library for getting people started with easy to re-use components for everyday projects.",
|
|
10
10
|
"main": "dist/cjs/index.js",
|
|
11
11
|
"module": "dist/esm/index.js",
|
|
@@ -34,5 +34,14 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"styled-components": "^5.3.5"
|
|
37
|
-
}
|
|
37
|
+
},
|
|
38
|
+
"keywords": [
|
|
39
|
+
"React",
|
|
40
|
+
"CSS",
|
|
41
|
+
"style",
|
|
42
|
+
"animation",
|
|
43
|
+
"cube",
|
|
44
|
+
"cuboid",
|
|
45
|
+
"3d"
|
|
46
|
+
]
|
|
38
47
|
}
|