Qualtrics,视频开始后出现下一步按钮
Qualtrics, next button appear after video started
我是 Qualtrics 的新手,我想知道是否有一种方法可以使用 javascript 创建一个规则,使下一个按钮仅在播放视频或完全观看时出现?
我有这个代码,但只有一个计时器
Qualtrics.SurveyEngine.addOnReady(
function() {
var delayTime = 7000 //This is the time of delay
var that = this;
$('NextButton').hide();
$('PreviousButton').hide();
setTimeout(function(){
$('NextButton').show();
$('PreviousButton').show();
},
delayTime
);
});
提前致谢
您使用的是 html5 视频标签吗?如果是这样,您可以使用 'ended' 处理程序:
jQuery("#"+this.questionId+" video").on("ended", function() {
$('NextButton').show();
$('PreviousButton').show();
});
我是 Qualtrics 的新手,我想知道是否有一种方法可以使用 javascript 创建一个规则,使下一个按钮仅在播放视频或完全观看时出现?
我有这个代码,但只有一个计时器
Qualtrics.SurveyEngine.addOnReady(
function() {
var delayTime = 7000 //This is the time of delay
var that = this;
$('NextButton').hide();
$('PreviousButton').hide();
setTimeout(function(){
$('NextButton').show();
$('PreviousButton').show();
},
delayTime
);
});
提前致谢
您使用的是 html5 视频标签吗?如果是这样,您可以使用 'ended' 处理程序:
jQuery("#"+this.questionId+" video").on("ended", function() {
$('NextButton').show();
$('PreviousButton').show();
});