Another work in progress, but I'm pretty happy with where this project is going. I had a ton of fun with this project, especially the transitions between pages and the user-selectable content within each page, and I'll be playing around with framer-motion to see what else is possible.
Rafael
@rafaelrmbAll comments
- @adamwinzdesignSubmitted about 2 years ago@rafaelrmbPosted about 2 years ago
The transitions between pages and tabs are indeed amazing! Very smooth, great job! Is this achievable with CSS + HTML only?
0 - @KhantMin200Submitted over 2 years ago
How can I get json link in project? They give me json files manually in project but I want to work with fetch. Please help me.
@rafaelrmbPosted over 2 years agoHi Khant, here is an example on how to use fetch to collect the data from the json file. I was able to complete my project using this. Give it a try!
fetch('data.json') .then(function (response) { return response.json(); }) .then(function (data) { //do something
});Marked as helpful0