支持Adobe Analytics跟踪 support-for-adobe-analytics-tracking
开箱即用跟踪 section-ba994f079d0343c8ae48adffaa3195a3
视频查看器支持Adobe Analytics开箱即用跟踪。 要启用跟踪,请将适当的公司预设名称作为config2
参数传递。
查看器还会向配置的图像服务器发送一个跟踪HTTP请求,其中包含查看器类型和版本信息。
自定义跟踪 section-cda48fc9730142d0bb3326bac7df3271
要与第三方分析系统集成,必须侦听trackEvent
查看器回调,并根据需要处理回调函数的eventInfo
参数。 以下代码是此类处理程序函数的示例:
var zoomViewer = new s7viewers.ZoomViewer({
"containerId":"s7viewer",
"params":{
"asset":"Scene7SharedAssets/ImageSet-Views-Sample",
"serverurl":"http://s7d1.scene7.com/is/image/"
},
"handlers":{
"trackEvent":function(objID, compClass, instName, timeStamp, eventInfo) {
//identify event type
var eventType = eventInfo.split(",")[0];
switch (eventType) {
case "LOAD":
//custom event processing code
break;
//additional cases for other events
}
}
}
});
查看器跟踪以下SDK用户事件:
SDK用户事件
发送时间……
加载
首先加载查看器。
交换
在查看器中使用 setAsset() API交换资源。
缩放
缩放图像。
平移
图像被平移。
样本
通过单击或点按色板可更改图像。
recommendation-more-help
b7426f53-aad9-4c00-83fc-664f30f681e8