Feedbacks are appreciated, especially how you handle the toggle
Avatarfreak
@avatarfreakAll comments
- @HaemoffySubmitted about 3 years ago@avatarfreakPosted about 3 years ago
Hey, nice transition on the toggle button.
- For toggling, I prefer using the radio button. It is easy to target with js.
- I did the same kind of transition with a different approach. Have a look at my solution . Feedback would be welcomed. Happy coding.
Marked as helpful0 - @BrendaMichellleSubmitted about 3 years ago
Any feedback is appreciated.
@avatarfreakPosted about 3 years agoNice and congratulation on completing the challenge but here is some issue that needs to be rectified.
- your site is not published. I'm guessing you may have entered the wrong path in the live URL field.
- Correct path to your solution solution
- In the readme file. You gave the wrong path. 404 pages are showing.
- Image is missing.
Happy coding. These are minor issues and can easily be fixed it.
Marked as helpful0 - @Barna-MolnarSubmitted about 3 years ago
I really liked this project, let me know pls what do you think about it ! Keep Coding !
@avatarfreakPosted about 3 years agoIt is really looking nice. One minor issue in mobile devices, there is a horizontal shift in layout, overflow kind of issue. Happy coding.
1 - @imonaarSubmitted about 3 years ago
This looked ease at first but challenged me a lot. i had to restart over at some pointswhen everything wasnt working. my major concern is the buttons. As you can notice my button layout breaks when you adjust for different mobile screens.
-
how did you approach approach laying out the buttons? did you use buttons for each indivual page? or just a single pair of buttons absolutely positioned like i did?
-
i haven't touched on accessibility yet because i need to solve that button layout that is bugging me
-
more comments and corrections are welcome
@avatarfreakPosted about 3 years ago- Good work, Design-wise it is good and responsive.
- For the button try using
pseudo-element
.
::after
or::before
. - In my opinion, it is easier to target elements. As it will always be relative to its immediate parent. something like this example.
.image-container{ position:relative; } .image-container::after{ content:''; position:absolute; top:0; left:0; width:100%; height:100% }
Marked as helpful0 -
- @Ryusuke66Submitted about 3 years ago
Any feedback is appreciated
@avatarfreakPosted about 3 years ago- Design is good and responsive.
- I think your
email validation
is not working properly after entering the correct email. It still complains wrong email.
1 - @dwi312Submitted about 3 years ago
how to make a slide show right ??
@avatarfreakPosted about 3 years agoVery well done from a
design perspective
.One thing I found a little unusual is
transition duration
. I meant to say there is a delay of few seconds during the transition.Secondly, you could have made a single component and target the attribute and replace
image and quotation
usingjavascript
element.setAttribute('src', 'path/to/image/') element.textContent= "quotation"
For slide show logic you can check my link given below. It is simple javascript.
0