在Google Analytics中计算移动设备上的手指滑动

时间:2014-04-29 23:18:37

标签: google-analytics analytics google-analytics-v4

我一直在环顾四周,无法找到有关您是否可以在Google Analytics中跟踪手指滑动的任何信息。

1 个答案:

答案 0 :(得分:1)

是的,你可以这样做。 jQuery Mobile包含swipe support

$("#the_div_id_that_is_swiped").on("swipe", function(event) {
   // it has been swiped, so track it as an event
   _gaq.push(['_trackEvent', 'Swipe', 'Landing Page Image', 'Description in here...']);
});