ampproject / worker-dom

The same DOM API and Frameworks you know, but in a Web Worker.
Apache License 2.0
3.21k stars 151 forks source link

support element.offsetTop #835

Open sayjeyhi opened 4 years ago

sayjeyhi commented 4 years ago

I need offsetTop or scrollTop need to be supported...

sayjeyhi commented 4 years ago

I used getBoundingClientRectAsync to get offsetTop, but scrollTop is not accessible !! is there any way to get document scroll in amp-script?

@kristoferbaxter @samouri

s.getBoundingClientRectAsync().then(function (data) {
      console.log(data);
      sections[s.id] = data.top;
    });