我一直在环顾四周,无法找到有关您是否可以在Google Analytics中跟踪手指滑动的任何信息。
答案 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...']);
});