I upgrade from v1 in Vue ,but can’t get offset.top()
Please help me ,thanks
var $$ = Dom7
var container = $$('.infinite-scroll')
$$('.page-content').on('scroll', function () {
console.log(container.offset().top);
});
I upgrade from v1 in Vue ,but can’t get offset.top()
Please help me ,thanks
var $$ = Dom7
var container = $$('.infinite-scroll')
$$('.page-content').on('scroll', function () {
console.log(container.offset().top);
});
var segundoMov=$$(’#segunda’).offset().top;
$$(’.li2’).on(‘click’, function () {
$$(’.page-content’).scrollTop(segundoMov, 600);
});
for scrolling i use that
Thanks for your reply , solved