Вопрос

I want to have an Adobe Edge animation, which plays after a visitor clicks an ordinary HTML form button. How can this be done?

Это было полезно?

Решение

ball_edge.js

remove:
$(window).load(function() {
$.Edge.play();
});


The HTML file

Add immediately before </HTML>:
<script>
$("#RoundRect1").click(function () {
$.Edge.play();
});
</script>
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top