This wizard has 3 steps. I want to animate the transitions between the three steps. At the first stage, the user can click the "Next" button. When they do this, the contents of step 1 are pushed down and step 2 is displayed. Step 2 also has a βNextβ button that the user can click. When clicked, the contents of steps 1 and 2 are flipped to display the contents in step 3.
I managed to get the map in Safari if I use absolute heights. I was able to get a container for dynamic growth, as I need in Safari. However, I was not able to get these two things to work together in Safari. I was able to do this in Chrome and Firefox though.
I currently have Bootply . Which has the following structure:
<section class="container"> <div id="card"> <figure class="front"> <div class="step-2-default" id="step2" style="overflow-x:hidden; padding:0.0rem 1.0rem;"> <label>Step 2</label> <p>These are the details of the second step</p> <button id="nextButton2">next</button> </div> <div class="step-1-default" id="step1"> <label>Step 1</label> <p>These are the details of the first step</p> <button id="nextButton1">next</button> </div> </figure> <figure class="back"> <div id="step3"> <label>Step 3</label> <p>Thank you for using this wizard</p> </div> </figure> </div> </section>
In this Bootply, discarding works. But container not handled properly. I am trying to get a light background behind the map in order to grow as the map grows. The background should grow when step 2 is shown. But it is not. I cannot use absolute heights because the content at each step is dynamic.
I managed to get a background for dynamic growth. Or, I was able to get a card to flip properly. But I can not get them to work together in Safari.
Any help is appreciated.
html css safari
Zach templeton
source share