我正在使用 facebook 像素代码来确定用户何时阅读了整篇文章。我有一个无限的博客,所以当用户向下滚动页面时 URL 会发生变化。我目前有一个功能可以在用户到达页面末尾时运行一次,但我需要对其进行修改,因此如果 URL 发生更改,该功能将被重置并可以再次运行。这是我当前的代码。
// determine the position of element
jQuery.fn.isInViewport = function() {
var elementTop = jQuery(this).offset().top;
var elementBottom = elementTop + jQuery(this).outerHeight();
var viewportTop = jQuery(window).scrollTop();
var viewportBottom = viewportTop + jQuery(window).height();
return elementBottom > viewportTop && elementTop < viewportBottom;
};
// grab the current URL
var originalURL = window.location.href;
// check to see if element is in viewport
jQuery(window).on('resize scroll', function() {
var currentURL = '';
jQuery('.end-of-content-icon').each(function() {
if (jQuery(this).isInViewport()) {
currentURL = window.location.href;
if(originalURL !== currentURL) {
canOnlyFireOnce();
originalURL = currentURL;
}
}
});
});
// function to only fire once (courtesy of David Walsh)
function once(fn, context) {
var result;
return function() {
if(fn) {
result = fn.apply(context || this, arguments);
fn = null;
}
return result;
};
}
// Usage
var canOnlyFireOnce = once(function() {
fbq('track', 'Lead');
});