Built a Portfolio Page. Would love it if I could get some feedback

Hello All!

I just put my portfolio page on GitHub which you can view here. I would love any feedback!

I am trying to get the social media links menu to open when you have scrolled to the bottom but for some reason I am having trouble :confused: so I decided to upload it as is for now.

Thanks!
keith

1 Like

Hey. Nice job, Materialize.css is such a beautiful framework. As for your question, the FAB buttons can be open and closed via their own method, so you could do something like this in your jQuery .ready() method:

window.onscroll = function() {
  (window.innerHeight + window.pageYOffset) >= document.body.offsetHeight ? 
  $('.fixed-action-btn').openFAB() : 
  $('.fixed-action-btn').closeFAB();
};	
1 Like

Oh my god thank you! I donโ€™t know why I was having such a hard time finding a solution for this but it was aggravating. This is excellent.

I agree. Materialize is very elegant. This wasnโ€™t how I had envisioned the site when I started but I think it turned out well having used primarily their components and styling.

btw I just stalked your pens on CodePen. They are very impressive. Kudos.

1 Like