:star2: 2445 | @darrenfj |http://www.freecodecamp.org/darrenfj
:star2: 2446 | @darrenfj |http://www.freecodecamp.org/darrenfj
If you download my GitHub repo you can see it looks nothing like what is displayed on my GitHub pages on the safari browser.
I have deleted the repo and updated all the files. However, I'm having no luck, what should I do to fix this?
Locally when hosted my site homepage displays like this
https://ibb.co/gbgbEn
When hosted on gut pages it looks like this
https://ibb.co/eWsiun
https://github.com/ldocherty1/ldocherty1.github.io
Maybe you changed it, but there are console errors when I try to access that page?
:star2: 2447 | @darrenfj |http://www.freecodecamp.org/darrenfj
@Raghav17 You don't need JS to do stuff like this: CSS3 supports animations :)
You can set an animation using keyframes:
/* apply your animation to a class and add a duration */
.my-class {
animation: NAME-YOUR-ANIMATION 3s
}
/* my animation definition */
@keyframes NAME-YOUR-ANIMATION {
0% { background-color: red; }
50% { background-color: blue; }
100% { background-color: red; }
}
Or you can use transition
if you want to react to specifics events (eg change color for 3 seconds after a hover or click)
POST http://localhost:8081/register 404 (Not Found)
what is the solution?