How to delay first slide for 10 seconds

Question:

How can I delay the transition time for the first slide only?

I want to first slide to stay for 10 seconds, while all others to be 5 seconds.

Answer:

1. In Step 4, Options dialog, uncheck the option “Autoplay slider”.

2. Add the following JavaScript to your webpage:

<script language="JavaScript">
  window.setTimeout(
    function(){
      $("#amazingslider-1").data("object").isPaused = false;
      $("#amazingslider-1").data("object").slideRun(1);
    },
 10000);
</script>

In the code, the amazingslider-1 is the id of the slider. If you have specified a different id in the Publish dialog, you need to change the id accordingly.