当前代码(但不会按预期运行)。
$(window).scroll(function() {
if ($(this).scrollTop() > 1100) {
问题。
以上看起来应该有效;而不是像你想象的那样读取滚动位置,而是在任何时候触摸任何滚动位置时都会触发。因此,当用户完全滚动时,它会加载(我的chart.js动画) - 每次在主滚动条调整后都会刷新动画。
要求。
我正在尝试测量从页面顶部或底部到 检测滚动位置 的高度,甚至使用锚链接 &gt ;一旦达到指定的滚动位置,动画就会加载一次并保持动画完成状态。 我看过很多帖子,但没有真正的解决方案。
最近更新。
我已经尝试了两个建议;使用我的 chart.js 动画脚本在这些建议的调用中,但同样的问题出现了 - 动画刷新并询问每个触摸滚动条的实例。
var breakpoint = false;
$(window).scroll(function() {
if ($(this).scrollTop() > 400 && !breakpoint ) {
// do stuff
// $(window).scroll(function() {
// if ($(this).scrollTop() > 1100) {
// $(function () {
// $(document).ready(function () {
var chart = null;
var colors = Highcharts.getOptions().colors,
categories = ['Home', 'Own', 'Shop', 'Buy'],
name = 'Browser brands',
data = [{
// y: 55.11,
// color: colors[0],
// drilldown: {
// name: 'MSIE versions',
// categories: ['MSIE 6.0', 'MSIE 7.0', 'MSIE 8.0', 'MSIE 9.0'],
// data: [10.85, 7.35, 33.06, 2.81],
// color: colors[0]
// }
// }, {
y: 21.63,
color: colors[1],
drilldown: {
name: 'Buy',
// categories: ['Firefox 2.0', 'Firefox 3.0', 'Firefox 3.5', 'Firefox 3.6', 'Firefox 4.0'],
data: [0.20, 0.83, 1.58, 13.12, 5.43],
color: colors[1]
}
}, {
y: 11.94,
color: colors[2],
drilldown: {
name: 'Shop',
// categories: ['Chrome 5.0', 'Chrome 6.0', 'Chrome 7.0', 'Chrome 8.0', 'Chrome 9.0',
// 'Chrome 10.0', 'Chrome 11.0', 'Chrome 12.0'],
data: [0.12, 0.19, 0.12, 0.36, 0.32, 9.91, 0.50, 0.22],
color: colors[2]
}
}, {
y: 7.15,
color: colors[3],
drilldown: {
name: 'Own',
// categories: ['Safari 5.0', 'Safari 4.0', 'Safari Win 5.0', 'Safari 4.1', 'Safari/Maxthon',
// 'Safari 3.1', 'Safari 4.1'],
data: [4.55, 1.42, 0.23, 0.21, 0.20, 0.19, 0.14],
color: colors[3]
}
}, {
y: 2.14,
color: colors[4],
drilldown: {
name: 'Home',
// categories: ['Opera 9.x', 'Opera 10.x', 'Opera 11.x'],
data: [0.12, 0.37, 1.65],
color: colors[4]
}
}];
// Build the data array
var browserData = [];
for (var i = 0; i < data.length; i++) {
// add browser data
browserData.push({
name: categories[i],
y: data[i].y,
color: data[i].color
});
}
// Create the chart
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type: 'pie'
},
title: {
text: null
},
series: [{
name: 'Hot Links',
data: browserData,
innerSize: '30%'
}],
tooltip: {
valueSuffix: '%',
positioner: function () {
return {
x: this.chart.series[0].center[0] - (this.label.width / 2) + 8,
y: this.chart.series[0].center[1] - (this.label.height / 2) + 8
};
}
},
plotOptions: {
pie: {
cursor: 'pointer',
dataLabels: {
connectorColor: 'white'
},
point: {
events: {
mouseOver: function () {
if (!this.connector.dynamicConnector) {
var width = 16,
height = 24;
// Extract the connector start position
var dArr = this.connector.d.split(' ');
var startY = dArr.pop(),
startX = dArr.pop();
var start = [parseFloat(startX), parseFloat(startY)];
// Construct the triangle
var path = 'M ' + start[0] + ' ' + start[1] + 'L ' + (start[0] + height) + ' ' + (start[1] - (width / 2)) + ' L ' + (start[0] + height) + ' ' + (start[1] + (width / 2)) + ' L ' + start[0] + ' ' + start[1];
// Convert the section angle from radian to degree and apply to the trangle
// Setup rotation, x, y required by the updateTransform method
this.connector.rotation = (this.angle * 180) / Math.PI;
this.connector.x = startX;
this.connector.y = startY;
this.connector.updateTransform();
this.connector.attr('stroke', this.color);
this.connector.attr('fill', Highcharts.Color(this.color).brighten(0.2).get());
this.connector.attr('d', path);
this.connector.dynamicConnector = true;
}
this.connector.show();
},
mouseOut: function () {
this.connector.hide();
}
}
}
}
}
});
// });
// });
}
});
答案 0 :(得分:2)
使用更高范围的布尔值
控制它var breakpoint = false;
$(window).scroll(function() {
if ($(this).scrollTop() > 400 && !breakpoint ) {
doStuff();
}
if ($(this).scrollTop() < 400 && breakpoint ) {
doOtherStuff();
}
})
function doStuff() {
breakpoint = true;
console.log('we passed the breakpoint, do stuff');
}
function doOtherStuff() {
breakpoint = false;
console.log('were above the breakpoint, do other stuff');
}
编辑在断点上方添加了反向功能。
答案 1 :(得分:0)
最简单的解决方案是在条件发生后删除您的事件监听器:
var handler = function() {
if ($(this).scrollTop() > 1100) {
// Do stuff
$(window).off('scroll',handler);
}
}
$(window).on('scroll',handler);