Pregunta

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

¿Fue útil?

Solución

ball_edge.js

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


The HTML file

Add immediately before </HTML>:
<script>
$("#RoundRect1").click(function () {
$.Edge.play();
});
</script>
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top