Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Moving DIV on click Reply To: Moving DIV on click

#175572
bearhead
Participant

I think the most straight forward way to do this is just to create a slide show with the three videos embedded in it.

look into using either:
the anythingslider
or
the flexslider

then you can just embed the videos into the slider like so:

<div class="yoursliderclass">
          <ul class="slideclass">
            <li>
<embed width="x" height="x"
src="viedo1"
type="application/x-shockwave-flash">
</li>
                <li>
<embed width="x" height="x"
src="viedo2"
type="application/x-shockwave-flash">
                </li>
                <li>
<embed width="x" height="x"
src="viedo3"
type="application/x-shockwave-flash">
</li>
            
          </ul>
        </div>

Hope that helps!