Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi guys is it possible to insert a a register form over a slider?

Here is my slider, if its possible can you show me a example please.

XML
<div id="slide">
    <div class="slider">
        <ul class="items">
            <li><img src="" alt="">
                <div class="banner">

                </div>
            </li>
            <li><img src="" alt="">
                <div class="banner">

                </div>
            </li>
            <li><img src="" alt="">
                <div class="banner">

                </div>
            </li>
        </ul>
    </div>
    <a href="#" class="prev"></a><a href="#" class="next"></a>
</div>


C#
<script>
$(document)
    .ready(function () {
    $('.slider')
        ._TMS({
        show: 0,
        pauseOnHover: true,
        prevBu: '.prev',
        nextBu: '.next',
        playBu: false,
        duration: 10000,
        preset: 'zoomer',
        pagination: true,
        pagNums: false,
        slideshow: 7000,
        numStatus: false,
        banners: 'fade',
        waitBannerAnimation: false,
        progressBar: false
    })
});
</script>
Posted
Updated 11-Dec-13 9:30am
v2
Comments
Can't you place one new register div inside slider div?
Nico_Travassos 11-Dec-13 5:11am    
i could but every time the slider goes to next image every 30 secs it will reset the register form
Can you add one Register Form with this code and update the question with the new code?
Post whole page code so that I can see what other js or css files you are referring to.

I will try to fix this issue at my end then.
Nico_Travassos 11-Dec-13 14:56pm    
its a basic slider
Nico_Travassos 11-Dec-13 15:31pm    
script updated

1 solution

XML
<div id="register" style="position:absolute;top:50px;border:1px solid #333;background-color:White;">
   <input type="text"/>
   <button>ok</button>
   </div>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900