2
0
mirror of https://github.com/offen/website.git synced 2024-12-27 15:00:22 +01:00
website/homepage/theme/static/scripts/fade.js

14 lines
344 B
JavaScript
Raw Normal View History

2021-05-13 09:58:06 +02:00
new window.Vue({ // eslint-disable-line no-new
el: 'body.index .icon',
data: {
progress: 0
},
mounted: function () {
var self = this
window.addEventListener('scroll', function () {
var scrollTop = parseInt(window.document.documentElement.scrollTop, 10)
self.progress = Math.min(scrollTop / 100, 1)
})
2021-05-13 09:58:06 +02:00
}
})