Latest solutions
My first advance challenge in React JS
#react#animationSubmitted about 1 year agoAnimations Animations can greatly enhance the user experience but can be tricky to get right, especially in dynamic web applications like games.
Hook Handling Hooks are a cornerstone of functional React components, offering a way to use state and other React features without writing the logic on the component.
React Router React Router is vital for adding navigational components to your application, but it can be complex, especially when dealing with nested routes or protected routes.
Accesibility and semantic design - Vue
#accessibility#sass/scss#vite#vue#animationSubmitted almost 2 years ago
Latest comments
- @Juanescacha@edward-montoya
Nice job. I see you have implemented all the Jairo's suggestions. Now, looks better and more organized.
Suggestions
- I don't like the h1 divided in two pieces, probably the screen readers are smart enough to share with the user the right name. However, I prefer a "hidden" solution to separate the title from the h1 (optional).
- The modifiers of the streaming companies are defined in a wrong way. Since, you are using BEM as class naming methodology, you are using the syntax
main__item-google
, however, the correct syntax ismain__item--google
. - Instead of using
aria-hidden
in the images, I think, it is more clear if you just usealt=""
. Both options tell the screen readers that the image is decorative.
Marked as helpful