Framework7: Scroll position ?

Created on 23 Jun 2015  ·  4Comments  ·  Source: framework7io/framework7

Hi,

How to scroll position ? Scroll to css add class not working.

outdated

Most helpful comment

scroll to specific item

var container = $$('.page-content'),
                scrollTo = $$('#item_element');

                //mover scroll posicion, duracion
                container.scrollTop(scrollTo.offset().top - container.offset().top + container.scrollTop(), 600); 

All 4 comments

What have you tried? It works with:

$$('.page-content').scrollTop(100, 600);

Closing as no further response/discussion

scroll to specific item

var container = $$('.page-content'),
                scrollTo = $$('#item_element');

                //mover scroll posicion, duracion
                container.scrollTop(scrollTo.offset().top - container.offset().top + container.scrollTop(), 600); 

Hi,
how can one achieve this in F7+vue ?

Was this page helpful?
0 / 5 - 0 ratings

Related issues

russiann picture russiann  ·  5Comments

yeli19950109 picture yeli19950109  ·  3Comments

seme1 picture seme1  ·  5Comments

vousys picture vousys  ·  5Comments

ahmeddaif1 picture ahmeddaif1  ·  4Comments