我刚刚建立了一个目标网页(speakeasysessions.com),上面有很多部分,我想通过Google Analytics跟踪人们在转换/退出网页之前滚动的距离。
我发现了这个jquery插件:http://scrolldepth.parsnip.io/,我已经尝试将其安装到我的代码中。
他们告诉我要做以下事情:
<script src="jquery.scrolldepth.min.js"></script>
<script>
jQuery(function() {
jQuery.scrollDepth();
});
</script>
该插件可以通过id等自定义包含网站的各个部分。因此可以自定义。以下是我最终使用的内容:
<script type="text/javascript">
jQuery(function() {
jQuery.scrollDepth({
minHeight: 0,
elements: ['#testimonials','#promise','#cheap-prices','#about'],
percentage: true,
userTiming: true,
pixelDepth: false,
nonInteraction: false,
});
})
这看起来很简单。但是,在分析仪表板上没有注册任何事件,因此它根本不起作用。有人能说清楚这个吗?因为我真的想让它发挥作用。
答案 0 :(得分:0)
看起来你的/ js /目录中缺少scrolldepth.min.js文件。
http://speakeasysessions.com/js/jquery.scrolldepth.min.js返回404。