Я встроил демонстрацию, созданную платформой учебных материалов под названием Launchfire. Демо-игра встроена в наш действующий сайт. Мне нужно, чтобы он закрылся, когда стажеры завершат обучающую демонстрацию. Вот сценарий. функция
Function29(){
$('#player').empty();
Lemonade.DemoPlayer.play({
demo: '750e8759-6fa1-45be-
aa8a-03f02cbe45af',
container: $('#player'),
locale: 'en_US',
finishButtonText:'Continue',
horizontalPadding: 25,
onFinish: function() {
$("#player").html(
"Click anywhere to continue"
);
// you can do anything when the game ends!
},
onStepChange: function (previousStep, currentStep, currentHotspot, totalSteps) {
// every time the scene changes, this event is called
},
});
}