Exemplo n.º 1
0
echo BASE_URL;
?>
wow-slider/engine/jquery.js"></script>
        <!-- End WOWSlider.com HEAD section -->
    </head>
    <body style="background-color:#d7d7d7">
    

        <div class="slider-container">
                            <div class="wowslider-container">
                                <div class="ws_images"><ul>
                        

                        </a>
                        <?php 
$images = \Util\AppUtil::getFileNames("wow-slider/data/images/" . $type);
$tips = "";
foreach ($images as $img) {
    $src = BASE_URL . 'wow-slider/data/images/' . $type . '/' . $img;
    echo '<li><a href="productList.php?type=' . $type . '"><img src="' . $src . '" alt="' . $img . '" title="' . \Util\AppUtil::get_file_title($img) . '" id="wows1_0" height="240"/></a></li>';
    $tips .= '<a href="productList.php"><img src="' . $src . '" alt="' . $img . '" height="30" width="30"/>1</a>';
}
?>

                    </ul></div>
                <div class="ws_bullets"><div>
                        <?php 
echo $tips;
?>
                    </div></div>
Exemplo n.º 2
0
                                        </div>
                                        <div style="float:left; height:100%; width:33%;">

                                        </div>
                                        <div style="clear:both"></div>
                                        </div>
                                        </div>
                                </div>
                            </div>

                            <div class="clearer" style="margin-top:-20px;">&nbsp;</div>
                      </div>
                    </div>
                    <table style="margin-top:4%;">
                        <?php 
$categories = \Util\AppUtil::getFileNames("wow-slider/data/images/");
$cate_size = count($categories);
$i = 0;
foreach ($categories as $category) {
    if ($i % 4 == 0) {
        echo '<tr class="ma-main-container col1-layout">';
    }
    echo '<td style="border:thin; width:25%;">';
    $type = $category;
    include 'wow-slider/index.php';
    echo '</td>';
    $i++;
    if ($i % 4 == 0) {
        echo '</tr><tr><td><br></td></tr>';
    }
}