|
@@ -517,15 +517,15 @@ export default {
|
|
|
|
|
|
},
|
|
|
mounted(){
|
|
|
- window.addEventListener('scroll', function() {
|
|
|
- var element = document.getElementById("btn-box"); // 获取目标元素
|
|
|
- var containerTopOffset = getComputedStyle(document.querySelector('.left-box')).getPropertyValue('padding-top'); // 计算容器顶部边界与视口之间的距离
|
|
|
- if (window.pageYOffset > parseInt(containerTopOffset)) {
|
|
|
- element.style.position = 'fixed'; // 若滚动超过容器顶部边界,则修改元素的position为fixed
|
|
|
- } else {
|
|
|
- element.style.position = 'absolute'; // 否则还原为absolute定位
|
|
|
- }
|
|
|
- });
|
|
|
+ // window.addEventListener('scroll', function() {
|
|
|
+ // var element = document.getElementById("btn-box"); // 获取目标元素
|
|
|
+ // var containerTopOffset = getComputedStyle(document.querySelector('.left-box')).getPropertyValue('padding-top'); // 计算容器顶部边界与视口之间的距离
|
|
|
+ // if (window.pageYOffset > parseInt(containerTopOffset)) {
|
|
|
+ // element.style.position = 'fixed'; // 若滚动超过容器顶部边界,则修改元素的position为fixed
|
|
|
+ // } else {
|
|
|
+ // element.style.position = 'absolute'; // 否则还原为absolute定位
|
|
|
+ // }
|
|
|
+ // });
|
|
|
},
|
|
|
methods:{
|
|
|
getAppsScore(){
|