Example #1
0
                    <div u="navigator" class="jssorb03" style="bottom: 10px; right: 10px;">
                        <!-- bullet navigator item prototype -->
                        <div u="prototype"><div u="numbertemplate"></div></div>
                    </div>

                </div>
            </div>
            <div>
                <div id="sliderh4_container" style="position: relative; top: 0px; left: 0px; width: 809px;
                     height: 150px;">

                    <!-- Slides Container -->
                    <div u="slides" style="cursor: move; position: absolute; left: 0px; top: 0px; width: 809px; height: 150px;
                         overflow: hidden;">
                        <?php 
$result = get_image_by_type_id(19);
if (mysqli_num_rows($result) > 0) {
    while ($gallery = mysqli_fetch_array($result, MYSQLI_ASSOC)) {
        ?>
                            <div>
                                <a href="slideshow.php?tid=19" ><img u="image" title="<?php 
        echo $gallery['type_name'];
        ?>
" src="images/gallery/<?php 
        echo $gallery['image'];
        ?>
" /></a>
                            </div>
                        <?php 
    }
}
Example #2
0
        <!-- Loading Screen -->
        <div u="loading" style="position: absolute; top: 0px; left: 0px;">
            <div style="filter: alpha(opacity=70); opacity:0.7; position: absolute; display: block;
                background-color: #000; top: 0px; left: 0px;width: 100%;height:100%;">
            </div>
            <div style="position: absolute; display: block; background: url(../images/web/loading.gif) no-repeat center center;
                top: 0px; left: 0px;width: 100%;height:100%;">
            </div>
        </div>

        <!-- Slides Container -->
        <div u="slides" style="cursor: move; position: absolute; left: 0px; top: 0px; width: 600px; height: 500px;
            overflow: hidden;">
            <?php 
$type_id = $_GET['tid'];
$rs = get_image_by_type_id($type_id);
if (mysqli_num_rows($rs) > 0) {
    while ($img = mysqli_fetch_array($rs, MYSQLI_ASSOC)) {
        ?>
            <div>
                <img u="image" src="images/gallery/<?php 
        echo $img['image'];
        ?>
" />
                <img u="thumb" src="images/gallery/<?php 
        echo $img['image'];
        ?>
" />
            </div>
            <?php 
    }