Omega
Omega

Reputation: 9158

fancybox: images+text

Is it possible to include in a box (by fancybox) text and images and not only text or images?

Upvotes: 1

Views: 4524

Answers (1)

Mohan Ram
Mohan Ram

Reputation: 8463

This is one of the way u can add text and image inside fancy box

        $(document).ready(function() {
            /*
            *   Examples - various
            */

            $("#various1").fancybox({
                'titlePosition'     : 'inside',
                'transitionIn'      : 'none',
                'transitionOut'     : 'none'
            });


        });

        <a id="various1" href="#inline1" title="Sample" name="various1">Preview</a>
            <div id="inline1" style="width:500px;height:500px;overflow:auto;">
             <font>Enter text here</font>
     <img src="http://www.google.co.in/images/logos/ps_logo2.png">
    </div>

Upvotes: 4

Related Questions