Skip to content
This repository was archived by the owner on Apr 15, 2020. It is now read-only.

Commit f59176d

Browse files
committed
minor touchups
1 parent 3a41157 commit f59176d

2 files changed

Lines changed: 5 additions & 11 deletions

File tree

CardTransition.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ export default class CardTransition extends React.Component {
106106
};
107107

108108
const config = {
109-
stiffness: 100,
110-
damping: 500,
109+
stiffness: 1000,
110+
damping: 600,
111111
mass: 3,
112112
overshootClamping: true,
113113
restSpeedThreshold: 0.1,

examples/SharedEl.js

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,28 +15,22 @@ import { SharedView, SharedText, SharedFadeTransition } from "../Shared";
1515
const PRODUCTS = {
1616
A: {
1717
image: {
18-
// uri: "https://www.organicfacts.net/wp-content/uploads/blueberries.jpg",
19-
uri: "http://localhost:8000/blueberries.jpg",
18+
uri: "https://www.organicfacts.net/wp-content/uploads/blueberries.jpg",
2019
},
21-
// image: require("../images/blueberries.jpg"),
2220
name: "Blueberries",
2321
},
2422
B: {
2523
image: {
2624
uri:
27-
// "https://www.organicfacts.net/wp-content/uploads/sugarinstrawberries.jpg",
28-
"http://localhost:8000/sugarinstrawberries.jpg",
25+
"https://www.organicfacts.net/wp-content/uploads/sugarinstrawberries.jpg",
2926
},
30-
// image: require("../images/sugarinstrawberries.jpg"),
3127
name: "Strawberries",
3228
},
3329
C: {
3430
image: {
3531
uri:
36-
// "https://www.organicfacts.net/wp-content/uploads/pineapplecalories.jpg",
37-
"http://localhost:8000/pineapplecalories.jpg",
32+
"https://www.organicfacts.net/wp-content/uploads/pineapplecalories.jpg",
3833
},
39-
// image: require("../images/pineapplecalories.jpg"),
4034
name: "Pineapple",
4135
},
4236
};

0 commit comments

Comments
 (0)