home/islapiiu/sites/pramudi/slider1-old.php 0000644 00000007344 15076675057 0014765 0 ustar 00 <?php
include_once(dirname(__FILE__) . './class/include.php');
$SLIDER = new Slider(NULL);
$slider = $SLIDER->all();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CodePen - Text animated slider (owl carousel with text animation)</title>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css'>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.css'>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css'>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css'>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<header>
<div class="owl-carousel owl-theme">
<?php
if (count($slider) > 0) {
foreach ($slider as $key => $slider) {
$active = '';
if ($key == 0) {
$active = 'active';
}
?>
<div class="item">
<img src="upload/slider/<?php echo $slider['image_name']; ?>" alt="images not found">
<div class="cover">
<div class="container">
<div class="header-content">
<div class="line"></div>
<h2>Gem Mastery Unveiled</h2>
<h1><?php echo $slider['title']; ?></h1>
<h4>Natural. Unique. Unheated. Elevate your style with rare gemstones.</h4>
<!-- <a href="product-categories.php" class="btn btn-hero">Read More</a> -->
</div>
</div>
</div>
</div>
<?php
}
} else {
}
?>
<!-- <div class="item">
<img src="https://cdn.pixabay.com/photo/2016/03/09/09/22/workplace-1245776_960_720.jpg" alt="images not found">
<div class="cover">
<div class="container">
<div class="header-content">
<div class="line animated bounceInLeft"></div>
<h2>Reimagine Digital Experience with</h2>
<h1>Intelligent solutions</h1>
<h4>We help entrepreneurs, start-ups and enterprises shape their ideas into products</h4>
</div>
</div>
</div>
</div>
<div class="item">
<img src="https://cdn.pixabay.com/photo/2017/05/04/16/37/meeting-2284501_960_720.jpg" alt="images not found">
<div class="cover">
<div class="container">
<div class="header-content">
<div class="line animated bounceInLeft"></div>
<h2>Peimagine Digital Experience with</h2>
<h1>Intelligent Solutions</h1>
<h4>We help entrepreneurs, start-ups and enterprises shape their ideas into products</h4>
</div>
</div>
</div>
</div> -->
</div>
</header>
<!-- partial -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/js/bootstrap.min.js'></script>
<script src="./script.js"></script>
</body>
</html> |