var current_fs, next_fs, previous_fs;
var left, opacity, scale;
var animating, percentAnimate;
function aysAnimateStep(animation, current_fs, next_fs){
if(typeof next_fs!=="undefined"){
switch(animation){
case "lswing":
current_fs.parents('.ays-questions-container').css({
perspective: '800px',
});
current_fs.addClass('swing-out-right-bck');
current_fs.css({
'pointer-events': 'none'
});
setTimeout(function(){
current_fs.css({
'position': 'absolute',
});
next_fs.css('display', 'flex');
next_fs.addClass('swing-in-left-fwd');
},400);
setTimeout(function(){
current_fs.hide();
current_fs.css({
'pointer-events': 'auto',
'position': 'static'
});
next_fs.css({
'position':'relative',
'pointer-events': 'auto'
});
current_fs.removeClass('swing-out-right-bck');
next_fs.removeClass('swing-in-left-fwd');
animating=false;
},1000);
break;
case "rswing":
current_fs.parents('.ays-questions-container').css({
perspective: '800px',
});
current_fs.addClass('swing-out-left-bck');
current_fs.css({
'pointer-events': 'none'
});
setTimeout(function(){
current_fs.css({
'position': 'absolute',
});
next_fs.css('display', 'flex');
next_fs.addClass('swing-in-right-fwd');
},400);
setTimeout(function(){
current_fs.hide();
current_fs.css({
'pointer-events': 'auto',
'position': 'static'
});
next_fs.css({
'position':'relative',
'pointer-events': 'auto'
});
current_fs.removeClass('swing-out-left-bck');
next_fs.removeClass('swing-in-right-fwd');
animating=false;
},1000);
break;
case "shake":
current_fs.animate({opacity: 0}, {
step: function (now, mx){
scale=1 - (1 - now) * 0.2;
left=(now * 50) + "%";
opacity=1 - now;
current_fs.css({
'transform': 'scale(' + scale + ')',
'position': 'absolute',
'top':0,
'opacity': 1,
'pointer-events': 'none'
});
next_fs.css({
'left': left,
'opacity': opacity,
'display':'flex',
'position':'relative',
'pointer-events': 'none'
});
},
duration: 800,
complete: function (){
current_fs.hide();
current_fs.css({
'pointer-events': 'auto',
'opacity': 1,
'position': 'static'
});
next_fs.css({
'display':'flex',
'position':'relative',
'transform':'scale(1)',
'opacity': 1,
'pointer-events': 'auto'
});
animating=false;
},
easing: 'easeInOutBack'
});
break;
case "fade":
current_fs.animate({opacity: 0}, {
step: function (now, mx){
opacity=1 - now;
current_fs.css({
'position': 'absolute',
'pointer-events': 'none',
'opacity': 0,
'display':'none',
});
next_fs.css({
'opacity': opacity,
'position':'relative',
'display':'flex',
'pointer-events': 'none'
});
},
duration: 500,
complete: function (){
current_fs.hide();
current_fs.css({
'pointer-events': 'auto',
'position': 'static',
'opacity': 0,
'display':'none',
});
next_fs.css({
'display':'flex',
'position':'relative',
'transform':'scale(1)',
'opacity': 1,
'pointer-events': 'auto'
});
animating=false;
}});
break;
default:
current_fs.animate({}, {
step: function (now, mx){
current_fs.css({
'pointer-events': 'none'
});
next_fs.css({
'position':'relative',
'pointer-events': 'none'
});
},
duration: 0,
complete: function (){
current_fs.hide();
current_fs.css({
'pointer-events': 'auto'
});
next_fs.css({
'display':'flex',
'position':'relative',
'transform':'scale(1)',
'pointer-events': 'auto'
});
animating=false;
}});
break;
}}else{
switch(animation){
case "lswing":
current_fs.parents('.ays-questions-container').css({
perspective: '800px',
});
current_fs.addClass('swing-out-right-bck');
current_fs.css({
'pointer-events': 'none'
});
setTimeout(function(){
current_fs.css({
'position': 'absolute',
});
},400);
setTimeout(function(){
current_fs.hide();
current_fs.css({
'pointer-events': 'auto',
'position': 'static'
});
current_fs.removeClass('swing-out-right-bck');
animating=false;
},1000);
break;
case "rswing":
current_fs.parents('.ays-questions-container').css({
perspective: '800px',
});
current_fs.addClass('swing-out-left-bck');
current_fs.css({
'pointer-events': 'none'
});
setTimeout(function(){
current_fs.css({
'position': 'absolute',
});
},400);
setTimeout(function(){
current_fs.hide();
current_fs.css({
'pointer-events': 'auto',
'position': 'static'
});
current_fs.removeClass('swing-out-left-bck');
animating=false;
},1000);
case "shake":
current_fs.animate({opacity: 0}, {
step: function (now, mx){
scale=1 - (1 - now) * 0.2;
left=(now * 50) + "%";
opacity=1 - now;
current_fs.css({
'transform': 'scale(' + scale + ')',
});
},
duration: 800,
complete: function (){
current_fs.hide();
animating=false;
},
easing: 'easeInOutBack'
});
break;
case "fade":
current_fs.animate({opacity: 0}, {
step: function (now, mx){
opacity=1 - now;
},
duration: 500,
complete: function (){
current_fs.hide();
animating=false;
},
easing: 'easeInOutBack'
});
break;
default:
current_fs.animate({}, {
step: function (now, mx){
},
duration: 0,
complete: function (){
current_fs.hide();
animating=false;
}});
break;
}}
}
function goToLastPage(e){
if(typeof explanationTimeout!='undefined'){
clearTimeout(explanationTimeout);
}
if(typeof aysTimerInterval!=="undefined"){
clearInterval(aysTimerInterval);
}
var container=jQuery(e.target).parents('.ays-quiz-container');
var totalSteps=container.find('div.step').length;
var currentStep=container.find('div.step.active-step');
var thankYouStep=container.find('div.step.ays_thank_you_fs');
var infoFormLast=thankYouStep.prev().find('div.information_form');
var questions_count=jQuery(e.target).parents('form').find('div[data-question-id]').length;
if(container.find('.ays-live-bar-percent').hasClass('ays-live-bar-count')){
container.find('.ays-live-bar-percent').text(questions_count);
}else{
container.find('.ays-live-bar-fill').animate({
width: '100%'
});
container.find('.ays-live-bar-percent').text(100);
}
container.find('.ays-quiz-timer').slideUp();
setTimeout(function (){
container.find('.ays-quiz-timer').parent().hide();
},300);
if(infoFormLast.length==0){
if(currentStep.hasClass('ays_thank_you_fs')===false){
if(! container.hasClass('ays-quiz-container-go-to-last-page')){
container.addClass('ays-quiz-container-go-to-last-page');
}
var steps=totalSteps - 3;
container.find('div.step').each(function (index){
if(jQuery(this).hasClass('ays_thank_you_fs')){
jQuery(this).addClass('active-step')
}else{
jQuery(this).css('display', 'none');
}});
container.find('input.ays_finish').trigger('click');
}}else{
container.find('.ays-quiz-timer').parent().hide();
container.find('.ays-live-bar-wrap').removeClass('rubberBand').addClass('bounceOut');
setTimeout(function (){
container.find('.ays-live-bar-wrap').css('display','none');
},300);
aysAnimateStep(container.data('quest-effect'), currentStep, infoFormLast.parent());
container.find('div.step').each(function (index){
jQuery(this).css('display', 'none');
jQuery(this).removeClass('active-step')
});
infoFormLast.parent().css('display', 'flex');
infoFormLast.parent().addClass('active-step');
}}
function GetFullDateTime(){
var now=new Date();
return [[now.getFullYear(), AddZero(now.getMonth() + 1), AddZero(now.getDate())].join("-"), [AddZero(now.getHours()), AddZero(now.getMinutes()), AddZero(now.getSeconds())].join(":")].join(" ");
}
function AddZero(num){
return (num >=0&&num < 10) ? "0" + num:num + "";
}
function aysEscapeHtml(text){
var map={
'&': '&amp;',
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
"'": '&#039;'
};
return text.replace(/[&<>\"']/g, function(m){ return map[m]; });
}
function audioVolumeIn(q){
if(q.volume){
var InT=0;
var setVolume=1;
var speed=0.05;
q.volume=InT;
var eAudio=setInterval(function(){
InT +=speed;
q.volume=InT.toFixed(1);
if(InT.toFixed(1) >=setVolume){
q.volume=1;
clearInterval(eAudio);
};},50);
};};
function audioVolumeOut(q){
if(q.volume){
var InT=1;
var setVolume=0;
var speed=0.05;
q.volume=InT;
var fAudio=setInterval(function(){
InT -=speed;
q.volume=InT.toFixed(1);
if(InT.toFixed(1) <=setVolume){
clearInterval(fAudio);
};},50);
};};
function isPlaying(audelem){
return !audelem.paused;
}
function resetPlaying(audelems){
for(var i=0; i < audelems.length; i++){
audelems[i].pause();
audelems[i].currentTime=0;
}}
function validatePhoneNumber(input){
var phoneno=/^[+ 0-9-]+$/;
if(input.value.match(phoneno)){
return true;
}else{
return false;
}}
function ays_countdown_datetime(sec, showMessage, quizId){
var distance=sec*1000;
var x_int;
x_int=setInterval(function(){
var days=Math.floor(distance / (1000 * 60 * 60 * 24));
var hours=Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes=Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds=Math.floor((distance % (1000 * 60)) / 1000);
var text="";
if(days > 0){
text +=days + " ";
if(days==1){
text +=quizLangObj.day + " ";
}else{
text +=quizLangObj.days + " ";
}}
if(hours > 0){
text +=hours + " ";
if(hours==1){
text +=quizLangObj.hour + " ";
}else{
text +=quizLangObj.hours + " ";
}}
if(minutes > 0){
text +=minutes + " ";
if(minutes==1){
text +=quizLangObj.minute + " ";
}else{
text +=quizLangObj.minutes + " ";
}}
text +=seconds + " " + quizLangObj.seconds;
jQuery(document).find("#"+ quizId +" .show_timer_countdown").html(text);
if(distance > 0){
distance -=1000;
}
if(distance <=0){
clearInterval(x_int);
jQuery(document).find("#"+ quizId +" .show_timer_countdown").html('');
}
if(distance==0){
location.reload();
}}, 1000);
}
function checkQuizPassword(e, myOptions, isAlert){
var passwordQuizInput=jQuery(e.target).parents('.step').find("input.ays_quiz_password");
if(passwordQuizInput.length > 0){
var passwordQuiz=passwordQuizInput.val();
if(myOptions.enable_password&&myOptions.enable_password=='on'){
if(myOptions.generate_password&&myOptions.generate_password=='generated_password'){
var generated_passwords=myOptions.generated_passwords;
var active_passwords=generated_passwords.active_passwords;
var flag=false;
for (var index in active_passwords){
if(active_passwords[index]==passwordQuiz){
flag=true;
break;
}}
if(flag===false){
if(isAlert){
alert(quizLangObj.passwordIsWrong);
}
return false;
}}else{
if(myOptions.password_quiz&&myOptions.password_quiz!==passwordQuiz){
if(isAlert){
alert(quizLangObj.passwordIsWrong);
}
return false;
}}
}}
return true;
}
function ays_quiz_is_question_min_count(requiredQuestions, isAllow){
animating=false;
if(requiredQuestions.length!==0){
var empty_inputs=0;
var errorMessage;
requiredQuestions.removeClass('ays-has-error');
for (var i=0; i < requiredQuestions.length; i++){
var item=requiredQuestions.eq(i);
var errorFlag=false;
if(item.data('type')=='checkbox'){
if(isAllow){
errorMessage='<img src="' + quiz_maker_ajax_public.warningIcon + '" alt="error">';
errorMessage +='<span>' + quizLangObj.requiredError + '</span>';
item.addClass('ays-has-error');
item.find('.ays-quiz-question-validation-error').html(errorMessage);
goToTop(item);
empty_inputs++;
break;
}else{
continue;
}}
}
if(empty_inputs!==0){
requiredQuestions.parents('.ays-quiz-container').addClass('ays-quiz-has-error');
return false;
}else{
requiredQuestions.parents('.ays-quiz-container').removeClass('ays-quiz-has-error');
return true;
}}
return true;
}
function aysCheckMinimumCountCheckbox(question, myQuizOptions){
var questionId=question.attr('data-question-id');
questionId=parseInt(questionId);
if(question.find('.ays-quiz-answers').hasClass('enable_min_selection_number')){
var checkedCount=question.find('.ays-field input[type="checkbox"]:checked').length;
if(questionId!==null&&questionId!=''&&typeof myQuizOptions[questionId]!='undefined'){
var enable_min_selection_number=(myQuizOptions[questionId].enable_min_selection_number&&myQuizOptions[questionId].enable_min_selection_number!="") ? myQuizOptions[questionId].enable_min_selection_number:false;
var min_selection_number=(myQuizOptions[questionId].min_selection_number&&myQuizOptions[questionId].min_selection_number!="") ? parseInt(myQuizOptions[questionId].min_selection_number):'';
if(enable_min_selection_number===true&&min_selection_number!=''){
if(min_selection_number <=checkedCount){
return true;
}}
}}
return false;
}
function goToTop(el){
el.get(0).scrollIntoView({
block: "center",
behavior: "smooth"
});
}
function countdownTimeForShow(parentStep, countDownDate){
var timeForShow="";
var waitingTimeBox=parentStep.find('.ays-quiz-question-waiting-time-box');
var now=new Date().getTime();
var distance=countDownDate - Math.ceil(now/1000)*1000;
var hours=Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes=Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds=Math.floor((distance % (1000 * 60)) / 1000);
var sec=seconds;
var min=minutes;
var hour=hours;
if(hours <=0){
hours=null;
}else if(hours < 10){
hours='0' + hours;
}
if(minutes < 10){
minutes='0' + minutes;
}
if(seconds < 10){
seconds='0' + seconds;
}
timeForShow=((hours==null)? "":(hours + ":")) + minutes + ":" + seconds;
if(distance <=1){
clearInterval(window.countdownTimeForShowInterval);
waitingTimeBox.html("");
}else{
waitingTimeBox.html(timeForShow);
}
return timeForShow;
}
function aysQuizCopyPreviewShortcode(button){
var shortcode=button.attr('data-shortcode');
var label=button.attr('data-label');
var copiedLabel=button.attr('data-copied-label');
var labelNode=button.find('.ays-quiz-preview-copy-shortcode-label');
if(! shortcode||labelNode.length===0){
return;
}
shortcode='[' + shortcode + ']';
var setCopiedLabel=function(){
labelNode.text(copiedLabel);
setTimeout(function(){
labelNode.text(label);
}, 1800);
};
var copyWithFallback=function(){
var input=$('<textarea readonly></textarea>');
input.val(shortcode);
input.css({
position: 'absolute',
left: '-9999px'
});
$('body').append(input);
input[0].select();
document.execCommand ('copy');
input.remove();
setCopiedLabel();
};
if(navigator.clipboard&&navigator.clipboard.writeText){
navigator.clipboard.writeText(shortcode).then(setCopiedLabel).catch(copyWithFallback);
return;
}
copyWithFallback();
};