slinky icon indicating copy to clipboard operation
slinky copied to clipboard

Headers as links

Open arjunmenon opened this issue 11 years ago • 6 comments

hey pretty sleek script. can the headers also function as links, so when clicked it scrolls to that section and open the content. something like accordion but slinky.

thanks.

arjunmenon avatar Feb 13 '14 07:02 arjunmenon

almost two years... i guess project is dead ... sad.. if anyone finds a project like this that has clickable headers please comment a link below. thx.

mikila85 avatar Nov 04 '15 14:11 mikila85

@mikila85 I have since moved away from jQuery for building web apps. If you or someone else implements this functionality I would have no problem merging it.

iclanzan avatar Nov 04 '15 20:11 iclanzan

Me too i need it for angular project. Tomorrow at work ill try making it work

mikila85 avatar Nov 04 '15 20:11 mikila85

Hi, I tried using targeting to reach the requested

when clicked on the corresponding
. but im stuck with it scrolling just to the top of the page (ignoring the stacked headers position above it and therefore few hundred pixels are invisible because the stacked headers above are hiding the start of the content.

any chance to get help from you trying to sort it out?

p.s. i tried doing $(window).scrollTop($("#myanchor").offset().top-(header.height * stackedHeaders); but the offset() is wrong i think that slinky changes it because on test page it worked without slinky.

mikila85 avatar Nov 08 '15 12:11 mikila85

Got it! :)

when doing: // Pre-calculate the offsets that the headers would have // from the top or bottom of the scroller.

in the foreach i added: headers[i].$.click(function () { scrollToArticle(i); });

and a function

function scrollToArticle(i) { var articleTop = headers[i].$.context.offsetTop - headers[i].top; $scroller.scrollTop(articleTop); }

mikila85 avatar Nov 08 '15 13:11 mikila85

@mikila85

This functionality is just what I'm looking for! Could you please elaborate on how you modified the core code? perhaps include a demo link? Thanks much!!!

sukiec avatar Nov 10 '15 21:11 sukiec