jun 18
This commit is contained in:
BIN
assets/images/image37.jpg
Normal file
BIN
assets/images/image37.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 94 KiB |
BIN
assets/images/image38.jpg
Normal file
BIN
assets/images/image38.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 72 KiB |
54
cases.php
54
cases.php
@@ -48,10 +48,10 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="form-container">
|
<div class="form-container">
|
||||||
<form class="form-search d-flex align-items-center d-sm-flex justify-content-sm-between" role="search">
|
<form class="form-search d-flex align-items-center d-sm-flex justify-content-sm-between mb-0" role="search">
|
||||||
<input id="src-input" class="form-control rounded-0 border-0" type="search" placeholder="Search ...">
|
<input id="src-input" class="form-control rounded-0 border-0" type="search" placeholder="Search ...">
|
||||||
<button class="btn" type="submit" style="padding-bottom: 0px;padding-top: 0px;">
|
<button class="btn" type="submit" style="padding-bottom: 0px;padding-top: 0px;">
|
||||||
<span class="material-icons">
|
<span class="material-icons pt-1">
|
||||||
search
|
search
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
@@ -96,17 +96,15 @@
|
|||||||
<img src="assets/images/logo.webp" class="logo-img mt-3 mt-lg-0 mt-md-0" alt="">
|
<img src="assets/images/logo.webp" class="logo-img mt-3 mt-lg-0 mt-md-0" alt="">
|
||||||
<div class="dropdown" id="dropdownid" style="position: absolute; width:fit-content;">
|
<div class="dropdown" id="dropdownid" style="position: absolute; width:fit-content;">
|
||||||
<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
|
<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
<i class="fa-solid fa-users"></i>
|
<i class="fa-solid fa-users"></i>
|
||||||
|
|
||||||
</a>
|
</a>
|
||||||
<ul class="dropdown-menu" aria-labelledby="dropdownMenuLink">
|
<ul class="dropdown-menu" aria-labelledby="dropdownMenuLink">
|
||||||
<?php if (loggedin()) {
|
<?php if (loggedin()) {
|
||||||
echo '<li><a class="dropdown-item" href="login.html">Log in</a></li>
|
echo '<li><a class="dropdown-item" href="php/logout.php">Log out</a></li>';
|
||||||
<li><a class="dropdown-item" href="signup.php">Sign up</a></li>
|
|
||||||
<li><a class="dropdown-item" href="php/logout.php">Log out</a></li>';
|
|
||||||
} else {
|
} else {
|
||||||
echo '<li><a class="dropdown-item" href="login.html">Log in</a></li>
|
echo '<li><a class="dropdown-item" href="login.html">Log in</a></li>
|
||||||
<li><a class="dropdown-item" href="signup.php">Sign up</a></li>';
|
<li><a class="dropdown-item" href="signup.php">Sign up</a></li>';
|
||||||
} ?>
|
} ?>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@@ -295,7 +293,6 @@
|
|||||||
<input class="view-more" type="submit" value="read more">
|
<input class="view-more" type="submit" value="read more">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-md-6 col-lg-4">
|
<div class="col-md-6 col-lg-4">
|
||||||
<div class="card-fourth px-md-2 px-lg-3">
|
<div class="card-fourth px-md-2 px-lg-3">
|
||||||
<img class="img-fourth" src="assets/images/image42.jpg" style="height: fit-content; width: fit-content;" alt="">
|
<img class="img-fourth" src="assets/images/image42.jpg" style="height: fit-content; width: fit-content;" alt="">
|
||||||
@@ -327,7 +324,6 @@
|
|||||||
|
|
||||||
<!-- form-s -->
|
<!-- form-s -->
|
||||||
|
|
||||||
|
|
||||||
<div class="form-about d-flex flex-column align-items-center justify-content-center my-md-5 mb-5 pt-lg-0 my-lg-0">
|
<div class="form-about d-flex flex-column align-items-center justify-content-center my-md-5 mb-5 pt-lg-0 my-lg-0">
|
||||||
<div class="headline d-flex align-items-center justify-content-center flex-column">
|
<div class="headline d-flex align-items-center justify-content-center flex-column">
|
||||||
<h3 class="headline-h3 mx-3" style="text-align: center;">Request</h3>
|
<h3 class="headline-h3 mx-3" style="text-align: center;">Request</h3>
|
||||||
@@ -343,14 +339,38 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
<!-- footer -->
|
<!-- footer -->
|
||||||
<footer class="d-flex flex-column justify-content-center align-items-center pb-4 py-lg-5 py-md-5">
|
<footer class="d-flex flex-column justify-content-center align-items-center pb-4 py-lg-5 py-md-5">
|
||||||
<img src="assets/images/footer-logo.webp" class="mt-3 mt-md-0" alt="">
|
<div class="scrollToTopBtn">
|
||||||
<div class="footer-copyright">
|
<button onclick="topFunction()" id="scrollToTopBtn"><i class="fa-solid fa-chevron-up"></i></button>
|
||||||
(c)2024 Globaly. All rights reserved. |
|
</div>
|
||||||
<a href="#">Privacy Policy</a>
|
<img src="assets/images/footer-logo.webp" class="mt-3 mt-md-0" alt="">
|
||||||
</div>
|
<div class="footer-copyright">
|
||||||
</footer>
|
(c)2024 Globaly. All rights reserved. |
|
||||||
|
<a href="#">Privacy Policy</a>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// Get the button
|
||||||
|
let mybutton = document.getElementById("scrollToTopBtn");
|
||||||
|
|
||||||
|
window.onscroll = function() {scrollFunction()};
|
||||||
|
|
||||||
|
function scrollFunction() {
|
||||||
|
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
|
||||||
|
mybutton.style.display = "block";
|
||||||
|
} else {
|
||||||
|
mybutton.style.display = "none";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// When the user clicks on the button, scroll to the top of the document
|
||||||
|
function topFunction() {
|
||||||
|
document.body.scrollTop = 0;
|
||||||
|
document.documentElement.scrollTop = 0;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
|
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
|||||||
56
contacts.php
56
contacts.php
@@ -48,10 +48,10 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="form-container">
|
<div class="form-container">
|
||||||
<form class="form-search d-flex align-items-center d-sm-flex justify-content-sm-between" role="search">
|
<form class="form-search d-flex align-items-center d-sm-flex justify-content-sm-between mb-0" role="search">
|
||||||
<input id="src-input" class="form-control rounded-0 border-0" type="search" placeholder="Search ...">
|
<input id="src-input" class="form-control rounded-0 border-0" type="search" placeholder="Search ...">
|
||||||
<button class="btn" type="submit" style="padding-bottom: 0px;padding-top: 0px;">
|
<button class="btn" type="submit" style="padding-bottom: 0px;padding-top: 0px;">
|
||||||
<span class="material-icons">
|
<span class="material-icons pt-1">
|
||||||
search
|
search
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
@@ -96,16 +96,14 @@
|
|||||||
<img src="assets/images/logo.webp" class="logo-img mt-3 mt-lg-0 mt-md-0" alt="">
|
<img src="assets/images/logo.webp" class="logo-img mt-3 mt-lg-0 mt-md-0" alt="">
|
||||||
<div class="dropdown" id="dropdownid" style="position: absolute; width:fit-content;">
|
<div class="dropdown" id="dropdownid" style="position: absolute; width:fit-content;">
|
||||||
<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
|
<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
<i class="fa-solid fa-users"></i>
|
<i class="fa-solid fa-users"></i>
|
||||||
|
|
||||||
</a>
|
</a>
|
||||||
<ul class="dropdown-menu" aria-labelledby="dropdownMenuLink">
|
<ul class="dropdown-menu" aria-labelledby="dropdownMenuLink">
|
||||||
<?php if (loggedin()) {
|
<?php if (loggedin()) {
|
||||||
echo '<li><a class="dropdown-item" href="login.html">Log in</a></li>
|
echo '<li><a class="dropdown-item" href="php/logout.php">Log out</a></li>';
|
||||||
<li><a class="dropdown-item" href="signup.php">Sign up</a></li>
|
} else {
|
||||||
<li><a class="dropdown-item" href="php/logout.php">Log out</a></li>';
|
echo '<li><a class="dropdown-item" href="login.html">Log in</a></li>
|
||||||
} else {
|
|
||||||
echo '<li><a class="dropdown-item" href="login.html">Log in</a></li>
|
|
||||||
<li><a class="dropdown-item" href="signup.php">Sign up</a></li>';
|
<li><a class="dropdown-item" href="signup.php">Sign up</a></li>';
|
||||||
} ?>
|
} ?>
|
||||||
</ul>
|
</ul>
|
||||||
@@ -206,8 +204,6 @@
|
|||||||
<div class="breadcrumb-item-sep">/</div>
|
<div class="breadcrumb-item-sep">/</div>
|
||||||
<div class="breadcrumb-item-about" aria-current="page">Contacts</div>
|
<div class="breadcrumb-item-about" aria-current="page">Contacts</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<!-- Address -->
|
<!-- Address -->
|
||||||
<section>
|
<section>
|
||||||
<div class="headline d-flex align-items-center justify-content-center flex-column mt-5 pt-lg-5">
|
<div class="headline d-flex align-items-center justify-content-center flex-column mt-5 pt-lg-5">
|
||||||
@@ -242,14 +238,38 @@
|
|||||||
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d691259.3591892968!2d-77.60275823607651!3d38.56325402877762!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89b64de885e53a9d%3A0x67e76f2416faa504!2z0KHQv9GA0LjQvdCz0YTQuNC70LQsINCS0LjRgNGf0LjQvdC40ZjQsCwg0KHRmNC10LTQuNGa0LXQvdC1INCU0YDQttCw0LLQtQ!5e0!3m2!1ssr!2srs!4v1718006987157!5m2!1ssr!2srs" width="100%" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
|
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d691259.3591892968!2d-77.60275823607651!3d38.56325402877762!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89b64de885e53a9d%3A0x67e76f2416faa504!2z0KHQv9GA0LjQvdCz0YTQuNC70LQsINCS0LjRgNGf0LjQvdC40ZjQsCwg0KHRmNC10LTQuNGa0LXQvdC1INCU0YDQttCw0LLQtQ!5e0!3m2!1ssr!2srs!4v1718006987157!5m2!1ssr!2srs" width="100%" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<!-- footer -->
|
<!-- footer -->
|
||||||
<footer class="d-flex flex-column justify-content-center align-items-center pb-4 py-lg-5 py-md-5">
|
<footer class="d-flex flex-column justify-content-center align-items-center pb-4 py-lg-5 py-md-5">
|
||||||
<img src="assets/images/footer-logo.webp" class="mt-3 mt-md-0" alt="">
|
<div class="scrollToTopBtn">
|
||||||
<div class="footer-copyright">
|
<button onclick="topFunction()" id="scrollToTopBtn"><i class="fa-solid fa-chevron-up"></i></button>
|
||||||
(c)2024 Globaly. All rights reserved. |
|
</div>
|
||||||
<a href="#">Privacy Policy</a>
|
<img src="assets/images/footer-logo.webp" class="mt-3 mt-md-0" alt="">
|
||||||
</div>
|
<div class="footer-copyright">
|
||||||
</footer>
|
(c)2024 Globaly. All rights reserved. |
|
||||||
|
<a href="#">Privacy Policy</a>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// Get the button
|
||||||
|
let mybutton = document.getElementById("scrollToTopBtn");
|
||||||
|
|
||||||
|
window.onscroll = function() {scrollFunction()};
|
||||||
|
|
||||||
|
function scrollFunction() {
|
||||||
|
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
|
||||||
|
mybutton.style.display = "block";
|
||||||
|
} else {
|
||||||
|
mybutton.style.display = "none";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// When the user clicks on the button, scroll to the top of the document
|
||||||
|
function topFunction() {
|
||||||
|
document.body.scrollTop = 0;
|
||||||
|
document.documentElement.scrollTop = 0;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
|
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
|||||||
@@ -30,7 +30,6 @@
|
|||||||
top: 63%;
|
top: 63%;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
@@ -78,6 +77,4 @@
|
|||||||
|
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
55
news.php
55
news.php
@@ -49,10 +49,10 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="form-container">
|
<div class="form-container">
|
||||||
<form class="form-search d-flex align-items-center d-sm-flex justify-content-sm-between" role="search">
|
<form class="form-search d-flex align-items-center d-sm-flex justify-content-sm-between mb-0" role="search">
|
||||||
<input id="src-input" class="form-control rounded-0 border-0" type="search" placeholder="Search ...">
|
<input id="src-input" class="form-control rounded-0 border-0" type="search" placeholder="Search ...">
|
||||||
<button class="btn" type="submit" style="padding-bottom: 0px;padding-top: 0px;">
|
<button class="btn" type="submit" style="padding-bottom: 0px;padding-top: 0px;">
|
||||||
<span class="material-icons">
|
<span class="material-icons pt-1">
|
||||||
search
|
search
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
@@ -97,17 +97,15 @@
|
|||||||
<img src="assets/images/logo.webp" class="logo-img mt-3 mt-lg-0 mt-md-0" alt="">
|
<img src="assets/images/logo.webp" class="logo-img mt-3 mt-lg-0 mt-md-0" alt="">
|
||||||
<div class="dropdown" id="dropdownid" style="position: absolute; width:fit-content;">
|
<div class="dropdown" id="dropdownid" style="position: absolute; width:fit-content;">
|
||||||
<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
|
<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
<i class="fa-solid fa-users"></i>
|
<i class="fa-solid fa-users"></i>
|
||||||
|
|
||||||
</a>
|
</a>
|
||||||
<ul class="dropdown-menu" aria-labelledby="dropdownMenuLink">
|
<ul class="dropdown-menu" aria-labelledby="dropdownMenuLink">
|
||||||
<?php if (loggedin()) {
|
<?php if (loggedin()) {
|
||||||
echo '<li><a class="dropdown-item" href="login.html">Log in</a></li>
|
echo '<li><a class="dropdown-item" href="php/logout.php">Log out</a></li>';
|
||||||
<li><a class="dropdown-item" href="signup.php">Sign up</a></li>
|
|
||||||
<li><a class="dropdown-item" href="php/logout.php">Log out</a></li>';
|
|
||||||
} else {
|
} else {
|
||||||
echo '<li><a class="dropdown-item" href="login.html">Log in</a></li>
|
echo '<li><a class="dropdown-item" href="login.html">Log in</a></li>
|
||||||
<li><a class="dropdown-item" href="signup.php">Sign up</a></li>';
|
<li><a class="dropdown-item" href="signup.php">Sign up</a></li>';
|
||||||
} ?>
|
} ?>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@@ -567,22 +565,41 @@
|
|||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<!-- footer -->
|
<!-- footer -->
|
||||||
<footer class="d-flex flex-column justify-content-center align-items-center pb-4 py-lg-5 py-md-5">
|
<footer class="d-flex flex-column justify-content-center align-items-center pb-4 py-lg-5 py-md-5">
|
||||||
<img src="assets/images/footer-logo.webp" class="mt-3 mt-md-0" alt="">
|
<div class="scrollToTopBtn">
|
||||||
<div class="footer-copyright">
|
<button onclick="topFunction()" id="scrollToTopBtn"><i class="fa-solid fa-chevron-up"></i></button>
|
||||||
(c)2024 Globaly. All rights reserved. |
|
</div>
|
||||||
<a href="#">Privacy Policy</a>
|
<img src="assets/images/footer-logo.webp" class="mt-3 mt-md-0" alt="">
|
||||||
</div>
|
<div class="footer-copyright">
|
||||||
</footer>
|
(c)2024 Globaly. All rights reserved. |
|
||||||
|
<a href="#">Privacy Policy</a>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// Get the button
|
||||||
|
let mybutton = document.getElementById("scrollToTopBtn");
|
||||||
|
|
||||||
|
window.onscroll = function() {scrollFunction()};
|
||||||
|
|
||||||
|
function scrollFunction() {
|
||||||
|
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
|
||||||
|
mybutton.style.display = "block";
|
||||||
|
} else {
|
||||||
|
mybutton.style.display = "none";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// When the user clicks on the button, scroll to the top of the document
|
||||||
|
function topFunction() {
|
||||||
|
document.body.scrollTop = 0;
|
||||||
|
document.documentElement.scrollTop = 0;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
|
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
||||||
|
|||||||
797
people.php
797
people.php
@@ -1,156 +1,305 @@
|
|||||||
<!DOCTYPE php>
|
<!DOCTYPE php>
|
||||||
<php lang="en">
|
<php lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css">
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css">
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.4.1/dist/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.4.1/dist/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.rtl.min.css" integrity="sha384-gXt9imSW0VcJVHezoNQsP+TNrjYXoGcrqBZJpry9zJt8PCQjobwmhMGaDHTASo9N" crossorigin="anonymous">
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.rtl.min.css" integrity="sha384-gXt9imSW0VcJVHezoNQsP+TNrjYXoGcrqBZJpry9zJt8PCQjobwmhMGaDHTASo9N" crossorigin="anonymous">
|
||||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
|
||||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
|
||||||
<link rel="stylesheet" href="style/style.css">
|
<link rel="stylesheet" href="style/style.css">
|
||||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||||
<script src="https://kit.fontawesome.com/4bb6479073.js" crossorigin="anonymous"></script>
|
<script src="https://kit.fontawesome.com/4bb6479073.js" crossorigin="anonymous"></script>
|
||||||
<title>Globaly - Full Cycle Business Management & Consulting Responsive WordPress Theme</title>
|
<title>Globaly - Full Cycle Business Management & Consulting Responsive WordPress Theme</title>
|
||||||
|
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.table-container-others{
|
.table-container-others {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
|
||||||
.table-others{
|
|
||||||
font-size: 13px;
|
|
||||||
border: 1px solid ;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.th-others{
|
|
||||||
color: #15c1cb;
|
|
||||||
padding: 0;
|
|
||||||
border: 1px solid;
|
|
||||||
border-color: #333333;
|
|
||||||
}
|
|
||||||
.td-others{
|
|
||||||
padding: 0;
|
|
||||||
border: 1px solid;
|
|
||||||
border-color: #333333;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (min-width:768px) {
|
|
||||||
.table-others{
|
|
||||||
font-size: 20px;
|
|
||||||
|
|
||||||
}
|
|
||||||
.th-others{
|
|
||||||
padding: 0 10px;
|
|
||||||
}
|
|
||||||
.td-others{
|
|
||||||
padding: 0 10px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.table-others {
|
||||||
|
font-size: 13px;
|
||||||
|
border: 1px solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
.th-others {
|
||||||
|
color: #15c1cb;
|
||||||
|
padding: 0;
|
||||||
|
border: 1px solid;
|
||||||
|
border-color: #333333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.td-others {
|
||||||
|
padding: 0;
|
||||||
|
border: 1px solid;
|
||||||
|
border-color: #333333;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width:768px) {
|
||||||
|
.table-others {
|
||||||
|
font-size: 20px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.th-others {
|
||||||
|
padding: 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.td-others {
|
||||||
|
padding: 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width:992px) {
|
||||||
|
.table-others {
|
||||||
|
font-size: 25px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.th-others {
|
||||||
|
padding: 0 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.td-others {
|
||||||
|
padding: 0 25px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
|
||||||
|
<?php
|
||||||
|
require 'php/connect.inc.php';
|
||||||
|
|
||||||
|
$query = "SELECT `id`,`name`, `surname`, `email`, `birth_day`, `birth_month`, `birth_year` FROM `globaly_accounts`";
|
||||||
|
$query_run = mysqli_query($con, $query);
|
||||||
|
|
||||||
|
$data = array();
|
||||||
|
|
||||||
|
$query_num_rows = mysqli_num_rows($query_run);
|
||||||
|
if ($query_num_rows > 0) {
|
||||||
|
while ($query_row = mysqli_fetch_assoc($query_run)) {
|
||||||
|
$id = $query_row['id'];
|
||||||
|
// Store the data in an associative array with $id as key
|
||||||
|
$data[$id] = array(
|
||||||
|
'name' => $query_row['name'],
|
||||||
|
'surname' => $query_row['surname'],
|
||||||
|
'email' => $query_row['email'],
|
||||||
|
'birth_day' => $query_row['birth_day'],
|
||||||
|
'birth_month' => $query_row['birth_month'],
|
||||||
|
'birth_year' => $query_row['birth_year']
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width:992px) {
|
|
||||||
.table-others{
|
|
||||||
font-size: 25px;
|
|
||||||
|
|
||||||
}
|
|
||||||
.th-others{
|
|
||||||
padding: 0 25px;
|
|
||||||
}
|
|
||||||
.td-others{
|
|
||||||
padding: 0 25px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<?php
|
|
||||||
require 'php/connect.inc.php';
|
|
||||||
|
|
||||||
$query = "SELECT `id`,`name`, `surname`, `email`, `birth_day`, `birth_month`, `birth_year` FROM `globaly_accounts`";
|
|
||||||
$query_run = mysqli_query($con, $query);
|
|
||||||
|
|
||||||
$data = array();
|
|
||||||
|
|
||||||
$query_num_rows = mysqli_num_rows($query_run);
|
|
||||||
if ($query_num_rows > 0) {
|
|
||||||
while ($query_row = mysqli_fetch_assoc($query_run)) {
|
|
||||||
$id = $query_row['id'];
|
|
||||||
// Store the data in an associative array with $id as key
|
|
||||||
$data[$id] = array(
|
|
||||||
'name' => $query_row['name'],
|
|
||||||
'surname' => $query_row['surname'],
|
|
||||||
'email' => $query_row['email'],
|
|
||||||
'birth_day' => $query_row['birth_day'],
|
|
||||||
'birth_month' => $query_row['birth_month'],
|
|
||||||
'birth_year' => $query_row['birth_year']
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
?>
|
if(isset($_GET['search_text'])){
|
||||||
|
$search_text = $_GET['search_text'];
|
||||||
|
}
|
||||||
|
|
||||||
<body>
|
if(!empty($search_text)){
|
||||||
<?php require 'php/core.inc.php'; ?>
|
$con = mysqli_connect($mysql_host,$mysql_user,$mysql_pass);
|
||||||
<!-- nav bar -->
|
if(mysqli_select_db($con,$mysql_db)){
|
||||||
|
|
||||||
<nav class="navbar clearfix d-flex justify-content-center d-md-flex justify-content-md-end">
|
|
||||||
<ul class="socials-ul clearfix d-none d-md-flex align-items-md-center pb-0 mt-0 mb-0">
|
|
||||||
<li id="socials">
|
|
||||||
<a href="https://www.facebook.com">
|
|
||||||
<i class="fa-brands fa-facebook-f"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li id="socials">
|
|
||||||
<a href="https://x.com">
|
|
||||||
<i class="fa-brands fa-twitter"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li id="socials">
|
|
||||||
<a href="https://www.google.com">
|
|
||||||
<i class="fa-brands fa-google-plus-g"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li id="socials">
|
|
||||||
<a href="https://www.pinterest.com">
|
|
||||||
<i class="fa-brands fa-pinterest"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li id="socials">
|
|
||||||
<a href="https://rs.linkedin.com">
|
|
||||||
<i class="fa-brands fa-linkedin-in"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<div class="form-container">
|
|
||||||
<form class="form-search d-flex align-items-center d-sm-flex justify-content-sm-between" role="search">
|
|
||||||
<input id="src-input" class="form-control rounded-0 border-0" type="search" placeholder="Search ...">
|
|
||||||
<button class="btn" type="submit" style="padding-bottom: 0px;padding-top: 0px;">
|
|
||||||
<span class="material-icons">
|
|
||||||
search
|
|
||||||
</span>
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<!-- header -->
|
$query = "SELECT `name`, `surname` FROM `globaly_accounts` WHERE `name` LIKE '". mysqli_real_escape_string($con,$search_text) ."%'";
|
||||||
<header class="d-flex flex-column d-md-flex flex-md-row-reverse justify-content-md-between align-items-center justify-content-sm-center mx-lg-0 my-lg-0 mt-4 mx-0 mt-md-4 mb-md-3 mx-md-3">
|
$query_run = mysqli_query($con,$query);
|
||||||
<div class="contact d-flex flex-column">
|
while($query_row = mysqli_fetch_assoc($query_run)){
|
||||||
<div class="number d-inline">
|
$name = $query_row['name'] ;
|
||||||
<span id="phone-img" class="material-icons">
|
echo $name . ' ' .$query_row['surname'] . '<br>' ;
|
||||||
phone
|
}
|
||||||
</span>
|
}
|
||||||
<a class="phone" href="#">800-2345-6789</a>
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<?php require 'php/core.inc.php'; ?>
|
||||||
|
<!-- nav bar -->
|
||||||
|
|
||||||
|
<nav class="navbar clearfix d-flex justify-content-center d-md-flex justify-content-md-end">
|
||||||
|
<ul class="socials-ul clearfix d-none d-md-flex align-items-md-center pb-0 mt-0 mb-0">
|
||||||
|
<li id="socials">
|
||||||
|
<a href="https://www.facebook.com">
|
||||||
|
<i class="fa-brands fa-facebook-f"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li id="socials">
|
||||||
|
<a href="https://x.com">
|
||||||
|
<i class="fa-brands fa-twitter"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li id="socials">
|
||||||
|
<a href="https://www.google.com">
|
||||||
|
<i class="fa-brands fa-google-plus-g"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li id="socials">
|
||||||
|
<a href="https://www.pinterest.com">
|
||||||
|
<i class="fa-brands fa-pinterest"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li id="socials">
|
||||||
|
<a href="https://rs.linkedin.com">
|
||||||
|
<i class="fa-brands fa-linkedin-in"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="form-container">
|
||||||
|
<form class="form-search d-flex align-items-center d-sm-flex justify-content-sm-between mb-0" role="search">
|
||||||
|
<input id="src-input" class="form-control rounded-0 border-0" type="search" placeholder="Search ..." name="search_text" onkeyup="findmatch();">
|
||||||
|
<button class="btn" type="submit" style="padding-bottom: 0px;padding-top: 0px;">
|
||||||
|
<span class="material-icons pt-1">
|
||||||
|
search
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<a id="mail" href="#" class="mt-1">globaly@demolink.org</a>
|
</nav>
|
||||||
</div>
|
|
||||||
<div class="horizontal-menu d-none d-md-none d-lg-flex ">
|
<!-- header -->
|
||||||
<ul class="nav-ul-hor d-md-flex d-md-row s mb-0">
|
<header class="d-flex flex-column d-md-flex flex-md-row-reverse justify-content-md-between align-items-center justify-content-sm-center mx-lg-0 my-lg-0 mt-4 mx-0 mt-md-4 mb-md-3 mx-md-3">
|
||||||
|
<div class="contact d-flex flex-column">
|
||||||
|
<div class="number d-inline">
|
||||||
|
<span id="phone-img" class="material-icons">
|
||||||
|
phone
|
||||||
|
</span>
|
||||||
|
<a class="phone" href="#">800-2345-6789</a>
|
||||||
|
</div>
|
||||||
|
<a id="mail" href="#" class="mt-1">globaly@demolink.org</a>
|
||||||
|
</div>
|
||||||
|
<div class="horizontal-menu d-none d-md-none d-lg-flex ">
|
||||||
|
<ul class="nav-ul-hor d-md-flex d-md-row s mb-0">
|
||||||
|
<a href="index.php" style="text-decoration: none;">
|
||||||
|
<li class="navs" id="li-people"> Home
|
||||||
|
<ul class="dropdown-ul-2" style="left: 25%">
|
||||||
|
<li>Case studies</li>
|
||||||
|
<li>Footer</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</a>
|
||||||
|
<li id="li-home" class="navs">People
|
||||||
|
<ul class="dropdown-ul-2" style="left: 30%">
|
||||||
|
<a href="#main">
|
||||||
|
<li>Main team</li>
|
||||||
|
</a>
|
||||||
|
<a href="#others">
|
||||||
|
<li>Others</li>
|
||||||
|
</a>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<a href="about.php" style="text-decoration: none;">
|
||||||
|
<li class="navs" id="li-about">About us
|
||||||
|
<ul class="dropdown-ul-2">
|
||||||
|
<li>FAQ</li>
|
||||||
|
<li>Contact Us</li>
|
||||||
|
<li>sidebar setings</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</a>
|
||||||
|
<a href="services.php" style="text-decoration: none;">
|
||||||
|
<li class="navs">Services</li>
|
||||||
|
</a>
|
||||||
|
<a href="cases.php" style="text-decoration: none;">
|
||||||
|
<li class="navs">Cases</li>
|
||||||
|
</a>
|
||||||
|
<a href="news.php" style="text-decoration: none;">
|
||||||
|
<li class="navs">News</li>
|
||||||
|
</a>
|
||||||
|
<a href="contacts.php" style="text-decoration: none;">
|
||||||
|
<li class="navs">Contacts</li>
|
||||||
|
</a>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<img src="assets/images/logo.webp" class="logo-img mt-3 mt-lg-0 mt-md-0" alt="">
|
||||||
|
<div class="dropdown" id="dropdownid" style="position: absolute; width:fit-content;">
|
||||||
|
<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
|
<i class="fa-solid fa-users"></i>
|
||||||
|
|
||||||
|
</a>
|
||||||
|
<ul class="dropdown-menu" aria-labelledby="dropdownMenuLink">
|
||||||
|
<?php if (loggedin()) {
|
||||||
|
echo '<li><a class="dropdown-item" href="php/logout.php">Log out</a></li>';
|
||||||
|
} else {
|
||||||
|
echo '<li><a class="dropdown-item" href="login.html">Log in</a></li>
|
||||||
|
<li><a class="dropdown-item" href="signup.php">Sign up</a></li>';
|
||||||
|
} ?>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- site navigation-->
|
||||||
|
|
||||||
|
<nav class="menu d-flex d-md-none justify-content-center align-items-center w-100 " style="background-color: white; height: 68px; box-shadow: 2px 8px 24px rgba(0,0,0,.1);">
|
||||||
|
<div class="container-fluid ">
|
||||||
|
<button class="navbar-toggler d-flex justify-content-center align-items-center" type="button" data-bs-toggle="collapse" data-bs-target="#navbarToggleExternalContent" aria-controls="navbarToggleExternalContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="material-icons">menu
|
||||||
|
</span><span>Menu</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
<div class="collapse" id="navbarToggleExternalContent">
|
||||||
|
<div id="myDropdown" class="dropdown-content">
|
||||||
|
<ul class="nav-ul mb-0">
|
||||||
|
<a href="index.php" style="text-decoration: none;">
|
||||||
|
<li class="navs"> Home</li>
|
||||||
|
</a>
|
||||||
|
<li id="li-home" class="navs">People</li>
|
||||||
|
<a href="about.php" style="text-decoration: none;">
|
||||||
|
<li class="navs">About us</li>
|
||||||
|
</a>
|
||||||
|
<a href="services.php" style="text-decoration: none;">
|
||||||
|
<li class="navs">Services</li>
|
||||||
|
</a>
|
||||||
|
<a href="cases.php" style="text-decoration: none;">
|
||||||
|
<li class="navs">Cases</li>
|
||||||
|
</a>
|
||||||
|
<a href="news.php" style="text-decoration: none;">
|
||||||
|
<li class="navs">News</li>
|
||||||
|
</a>
|
||||||
|
<a href="contacts.php" style="text-decoration: none;">
|
||||||
|
<li class="navs">Contacts</li>
|
||||||
|
</a>
|
||||||
|
</ul>
|
||||||
|
<div class="links d-inline-block w-100">
|
||||||
|
<ul class="socials-ul d-flex align-items-center justify-content-left mb-0">
|
||||||
|
<li id="socials">
|
||||||
|
<a href="https://www.facebook.com">
|
||||||
|
<i class="fa-brands fa-facebook-f"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li id="socials">
|
||||||
|
<a href="https://x.com">
|
||||||
|
<i class="fa-brands fa-twitter"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li id="socials">
|
||||||
|
<a href="https://www.google.com">
|
||||||
|
<i class="fa-brands fa-google-plus-g"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li id="socials">
|
||||||
|
<a href="https://www.pinterest.com">
|
||||||
|
<i class="fa-brands fa-pinterest"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li id="socials">
|
||||||
|
<a href="https://rs.linkedin.com">
|
||||||
|
<i class="fa-brands fa-linkedin-in"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<div class="horizontal-menu d-none d-lg-none d-md-flex d-md-row justify-content-md-start align-items-md-center">
|
||||||
|
<ul class="nav-ul-hor d-md-flex d-md-row s mb-0" style="box-shadow: 2px 8px 24px rgba(0,0,0,.1);">
|
||||||
<a href="index.php" style="text-decoration: none;">
|
<a href="index.php" style="text-decoration: none;">
|
||||||
<li class="navs"> Home</li>
|
<li class="navs"> Home</li>
|
||||||
</a>
|
</a>
|
||||||
@@ -172,236 +321,172 @@ if ($query_num_rows > 0) {
|
|||||||
</a>
|
</a>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<img src="assets/images/logo.webp" class="logo-img mt-3 mt-lg-0 mt-md-0" alt="">
|
<div class="breadcrumb">
|
||||||
<div class="dropdown" id="dropdownid" style="position: absolute; width:fit-content;">
|
<div class="breadcrumb-item"><a href="index.php">Home</a></div>
|
||||||
<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
|
<div class="breadcrumb-item-sep">/</div>
|
||||||
<i class="fa-solid fa-users"></i>
|
<div class="breadcrumb-item-about" aria-current="page">People</div>
|
||||||
|
|
||||||
</a>
|
|
||||||
<ul class="dropdown-menu" aria-labelledby="dropdownMenuLink">
|
|
||||||
<?php if (loggedin()) {
|
|
||||||
echo '<li><a class="dropdown-item" href="login.html">Log in</a></li>
|
|
||||||
<li><a class="dropdown-item" href="signup.php">Sign up</a></li>
|
|
||||||
<li><a class="dropdown-item" href="php/logout.php">Log out</a></li>';
|
|
||||||
} else {
|
|
||||||
echo '<li><a class="dropdown-item" href="login.html">Log in</a></li>
|
|
||||||
<li><a class="dropdown-item" href="signup.php">Sign up</a></li>';
|
|
||||||
} ?>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- site navigation-->
|
|
||||||
|
|
||||||
<nav class="menu d-flex d-md-none justify-content-center align-items-center w-100 " style="background-color: white; height: 68px; box-shadow: 2px 8px 24px rgba(0,0,0,.1);">
|
|
||||||
<div class="container-fluid ">
|
|
||||||
<button class="navbar-toggler d-flex justify-content-center align-items-center" type="button" data-bs-toggle="collapse" data-bs-target="#navbarToggleExternalContent" aria-controls="navbarToggleExternalContent" aria-expanded="false" aria-label="Toggle navigation">
|
|
||||||
<span class="material-icons">menu
|
|
||||||
</span><span>Menu</span>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
<div class="collapse" id="navbarToggleExternalContent">
|
|
||||||
<div id="myDropdown" class="dropdown-content">
|
|
||||||
<ul class="nav-ul mb-0">
|
|
||||||
<a href="index.php" style="text-decoration: none;">
|
|
||||||
<li class="navs"> Home</li>
|
|
||||||
</a>
|
|
||||||
<li id="li-home" class="navs">People</li>
|
|
||||||
<a href="about.php" style="text-decoration: none;">
|
|
||||||
<li class="navs">About us</li>
|
|
||||||
</a>
|
|
||||||
<a href="services.php" style="text-decoration: none;">
|
|
||||||
<li class="navs">Services</li>
|
|
||||||
</a>
|
|
||||||
<a href="cases.php" style="text-decoration: none;">
|
|
||||||
<li class="navs">Cases</li>
|
|
||||||
</a>
|
|
||||||
<a href="news.php" style="text-decoration: none;">
|
|
||||||
<li class="navs">News</li>
|
|
||||||
</a>
|
|
||||||
<a href="contacts.php" style="text-decoration: none;">
|
|
||||||
<li class="navs">Contacts</li>
|
|
||||||
</a>
|
|
||||||
</ul>
|
|
||||||
<div class="links d-inline-block w-100">
|
|
||||||
<ul class="socials-ul d-flex align-items-center justify-content-left mb-0">
|
|
||||||
<li id="socials">
|
|
||||||
<a href="https://www.facebook.com">
|
|
||||||
<i class="fa-brands fa-facebook-f"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li id="socials">
|
|
||||||
<a href="https://x.com">
|
|
||||||
<i class="fa-brands fa-twitter"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li id="socials">
|
|
||||||
<a href="https://www.google.com">
|
|
||||||
<i class="fa-brands fa-google-plus-g"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li id="socials">
|
|
||||||
<a href="https://www.pinterest.com">
|
|
||||||
<i class="fa-brands fa-pinterest"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li id="socials">
|
|
||||||
<a href="https://rs.linkedin.com">
|
|
||||||
<i class="fa-brands fa-linkedin-in"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</header>
|
|
||||||
|
|
||||||
<div class="horizontal-menu d-none d-lg-none d-md-flex d-md-row justify-content-md-start align-items-md-center">
|
|
||||||
<ul class="nav-ul-hor d-md-flex d-md-row s mb-0" style="box-shadow: 2px 8px 24px rgba(0,0,0,.1);">
|
|
||||||
<a href="index.php" style="text-decoration: none;">
|
|
||||||
<li class="navs"> Home</li>
|
|
||||||
</a>
|
|
||||||
<li id="li-home" class="navs">People</li>
|
|
||||||
<a href="about.php" style="text-decoration: none;">
|
|
||||||
<li class="navs">About us</li>
|
|
||||||
</a>
|
|
||||||
<a href="services.php" style="text-decoration: none;">
|
|
||||||
<li class="navs">Services</li>
|
|
||||||
</a>
|
|
||||||
<a href="cases.php" style="text-decoration: none;">
|
|
||||||
<li class="navs">Cases</li>
|
|
||||||
</a>
|
|
||||||
<a href="news.php" style="text-decoration: none;">
|
|
||||||
<li class="navs">News</li>
|
|
||||||
</a>
|
|
||||||
<a href="contacts.php" style="text-decoration: none;">
|
|
||||||
<li class="navs">Contacts</li>
|
|
||||||
</a>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="breadcrumb">
|
|
||||||
<div class="breadcrumb-item"><a href="index.php">Home</a></div>
|
|
||||||
<div class="breadcrumb-item-sep">/</div>
|
|
||||||
<div class="breadcrumb-item-about" aria-current="page">People</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Fourth part -->
|
<!-- Fourth part -->
|
||||||
<div class="fourth-part-au d-flex align-items-center justify-content-center flex-column my-5 pb-4 mx-md-5">
|
<div class="fourth-part-au d-flex align-items-center justify-content-center flex-column my-5 pb-4 mx-md-5" id="main">
|
||||||
<div class="headline d-flex align-items-center justify-content-center flex-column">
|
<div class="headline d-flex align-items-center justify-content-center flex-column">
|
||||||
<h3 class="headline-h3">Meet</h3>
|
<h3 class="headline-h3">Meet</h3>
|
||||||
<h2 class="headline-h2">the Main Team</h2>
|
<h2 class="headline-h2">the Main Team</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-6 col-lg-3">
|
<div class="col-md-6 col-lg-3">
|
||||||
<div class="card4 d-flex align-items-center justify-content-center flex-column mb-4">
|
<div class="card4 d-flex align-items-center justify-content-center flex-column mb-4">
|
||||||
<img class="img-fourth-au" src="assets/images/team1.jpg" alt="">
|
<img class="img-fourth-au" src="assets/images/team1.jpg" alt="">
|
||||||
<div class="card-text4 d-flex align-items-center justify-content-start flex-column">
|
<div class="card-text4 d-flex align-items-center justify-content-start flex-column">
|
||||||
<h4 class="h4-fourth"><?php echo $data[1]['name'] . ' ' . $data[1]['surname']; ?></h4>
|
<h4 class="h4-fourth"><?php echo $data[1]['name'] . ' ' . $data[1]['surname']; ?></h4>
|
||||||
<p class="p-fourth"><?php echo $data[1]['email'] . '<br>' . $data[1]['birth_day'] . '.' . $data[1]['birth_month'] . '.' . $data[1]['birth_year'] . '.'; ?></p>
|
<p class="p-fourth"><?php echo $data[1]['email'] . '<br>' . $data[1]['birth_day'] . '.' . $data[1]['birth_month'] . '.' . $data[1]['birth_year'] . '.'; ?></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 col-lg-3">
|
||||||
|
<div class="card4 d-flex align-items-center justify-content-center flex-column mb-4">
|
||||||
|
<img class="img-fourth-au" src="assets/images/team2.jpg" alt="">
|
||||||
|
<div class="card-text4 d-flex align-items-center justify-content-start flex-column">
|
||||||
|
<h4 class="h4-fourth"><?php echo $data[2]['name'] . ' ' . $data[2]['surname']; ?></h4>
|
||||||
|
<p class="p-fourth"><?php echo $data[2]['email'] . '<br>' . $data[2]['birth_day'] . '.' . $data[2]['birth_month'] . '.' . $data[2]['birth_year'] . '.'; ?></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 col-lg-3">
|
||||||
|
<div class="card4 d-flex align-items-center justify-content-center flex-column mb-4">
|
||||||
|
<img class="img-fourth-au" src="assets/images/team3.jpg" alt="">
|
||||||
|
<div class="card-text4 d-flex align-items-center justify-content-start flex-column">
|
||||||
|
<h4 class="h4-fourth"><?php echo $data[3]['name'] . ' ' . $data[3]['surname']; ?></h4>
|
||||||
|
<p class="p-fourth"><?php echo $data[3]['email'] . '<br>' . $data[3]['birth_day'] . '.' . $data[3]['birth_month'] . '.' . $data[3]['birth_year'] . '.'; ?></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 col-lg-3">
|
||||||
|
<div class="card4 d-flex align-items-center justify-content-center flex-column mb-4">
|
||||||
|
<img class="img-fourth-au" src="assets/images/team4.jpg" alt="">
|
||||||
|
<div class="card-text4 d-flex align-items-center justify-content-start flex-column">
|
||||||
|
<h4 class="h4-fourth"><?php echo $data[4]['name'] . ' ' . $data[4]['surname']; ?></h4>
|
||||||
|
<p class="p-fourth"><?php echo $data[4]['email'] . '<br>' . $data[4]['birth_day'] . '.' . $data[4]['birth_month'] . '.' . $data[4]['birth_year'] . '.'; ?></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 col-lg-3">
|
||||||
|
<div class="card4 d-flex align-items-center justify-content-center flex-column mb-4">
|
||||||
|
<img class="img-fourth-au" src="assets/images/team7.jpg" alt="">
|
||||||
|
<div class="card-text4 d-flex align-items-center justify-content-start flex-column">
|
||||||
|
<h4 class="h4-fourth"><?php echo $data[5]['name'] . ' ' . $data[5]['surname']; ?></h4>
|
||||||
|
<p class="p-fourth"><?php echo $data[5]['email'] . '<br>' . $data[5]['birth_day'] . '.' . $data[5]['birth_month'] . '.' . $data[5]['birth_year'] . '.'; ?></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 col-lg-3">
|
||||||
|
<div class="card4 d-flex align-items-center justify-content-center flex-column mb-4">
|
||||||
|
<img class="img-fourth-au" src="assets/images/team6.jpg" alt="">
|
||||||
|
<div class="card-text4 d-flex align-items-center justify-content-start flex-column">
|
||||||
|
<h4 class="h4-fourth"><?php echo $data[6]['name'] . ' ' . $data[6]['surname']; ?></h4>
|
||||||
|
<p class="p-fourth"><?php echo $data[6]['email'] . '<br>' . $data[6]['birth_day'] . '.' . $data[6]['birth_month'] . '.' . $data[6]['birth_year'] . '.'; ?></p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6 col-lg-3">
|
<div class="headline d-flex align-items-center justify-content-center flex-column">
|
||||||
<div class="card4 d-flex align-items-center justify-content-center flex-column mb-4">
|
<h3 class="headline-h3">Meet</h3>
|
||||||
<img class="img-fourth-au" src="assets/images/team2.jpg" alt="">
|
<h2 class="headline-h2">Others</h2>
|
||||||
<div class="card-text4 d-flex align-items-center justify-content-start flex-column">
|
|
||||||
<h4 class="h4-fourth"><?php echo $data[2]['name'] . ' ' . $data[2]['surname']; ?></h4>
|
|
||||||
<p class="p-fourth"><?php echo $data[2]['email'] . '<br>' . $data[2]['birth_day'] . '.' . $data[2]['birth_month'] . '.' . $data[2]['birth_year'] . '.'; ?></p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6 col-lg-3">
|
<div class="table-container-others" id="others">
|
||||||
<div class="card4 d-flex align-items-center justify-content-center flex-column mb-4">
|
<table class="table-others">
|
||||||
<img class="img-fourth-au" src="assets/images/team3.jpg" alt="">
|
<thead>
|
||||||
<div class="card-text4 d-flex align-items-center justify-content-start flex-column">
|
<tr>
|
||||||
<h4 class="h4-fourth"><?php echo $data[3]['name'] . ' ' . $data[3]['surname']; ?></h4>
|
<th class="th-others">Name</th>
|
||||||
<p class="p-fourth"><?php echo $data[3]['email'] . '<br>' . $data[3]['birth_day'] . '.' . $data[3]['birth_month'] . '.' . $data[3]['birth_year'] . '.'; ?></p>
|
<th class="th-others">Surname</th>
|
||||||
</div>
|
<th class="th-others">Email</th>
|
||||||
</div>
|
<th class="th-others">Birth Date</th>
|
||||||
</div>
|
</tr>
|
||||||
<div class="col-md-6 col-lg-3">
|
</thead>
|
||||||
<div class="card4 d-flex align-items-center justify-content-center flex-column mb-4">
|
<tbody>
|
||||||
<img class="img-fourth-au" src="assets/images/team4.jpg" alt="">
|
<?php
|
||||||
<div class="card-text4 d-flex align-items-center justify-content-start flex-column">
|
for ($id = 7; $id <= max(array_keys($data)); $id++) {
|
||||||
<h4 class="h4-fourth"><?php echo $data[4]['name'] . ' ' . $data[4]['surname']; ?></h4>
|
if (isset($data[$id])) {
|
||||||
<p class="p-fourth"><?php echo $data[4]['email'] . '<br>' . $data[4]['birth_day'] . '.' . $data[4]['birth_month'] . '.' . $data[4]['birth_year'] . '.'; ?></p>
|
echo "<tr>";
|
||||||
</div>
|
// Combine key and value for birth date into a formatted string
|
||||||
</div>
|
$birthDate = "{$data[$id]['birth_day']}.{$data[$id]['birth_month']}.{$data[$id]['birth_year']}.";
|
||||||
</div>
|
|
||||||
<div class="col-md-6 col-lg-3">
|
|
||||||
<div class="card4 d-flex align-items-center justify-content-center flex-column mb-4">
|
|
||||||
<img class="img-fourth-au" src="assets/images/team7.jpg" alt="">
|
|
||||||
<div class="card-text4 d-flex align-items-center justify-content-start flex-column">
|
|
||||||
<h4 class="h4-fourth"><?php echo $data[5]['name'] . ' ' . $data[5]['surname']; ?></h4>
|
|
||||||
<p class="p-fourth"><?php echo $data[5]['email'] . '<br>' . $data[5]['birth_day'] . '.' . $data[5]['birth_month'] . '.' . $data[5]['birth_year'] . '.'; ?></p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="col-md-6 col-lg-3">
|
|
||||||
<div class="card4 d-flex align-items-center justify-content-center flex-column mb-4">
|
|
||||||
<img class="img-fourth-au" src="assets/images/team6.jpg" alt="">
|
|
||||||
<div class="card-text4 d-flex align-items-center justify-content-start flex-column">
|
|
||||||
<h4 class="h4-fourth"><?php echo $data[6]['name'] . ' ' . $data[6]['surname']; ?></h4>
|
|
||||||
<p class="p-fourth"><?php echo $data[6]['email'] . '<br>' . $data[6]['birth_day'] . '.' . $data[6]['birth_month'] . '.' . $data[6]['birth_year'] . '.'; ?></p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="headline d-flex align-items-center justify-content-center flex-column">
|
|
||||||
<h3 class="headline-h3">Meet</h3>
|
|
||||||
<h2 class="headline-h2">Others</h2>
|
|
||||||
</div>
|
|
||||||
<div class="table-container-others">
|
|
||||||
<table class="table-others">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th class="th-others">Name</th>
|
|
||||||
<th class="th-others">Surname</th>
|
|
||||||
<th class="th-others">Email</th>
|
|
||||||
<th class="th-others">Birth Date</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<?php
|
|
||||||
for ($id = 7; $id <= max(array_keys($data)); $id++) {
|
|
||||||
if (isset($data[$id])) {
|
|
||||||
echo "<tr>";
|
|
||||||
// Combine key and value for birth date into a formatted string
|
|
||||||
$birthDate = "{$data[$id]['birth_day']}.{$data[$id]['birth_month']}.{$data[$id]['birth_year']}.";
|
|
||||||
|
|
||||||
echo "<td class='td-others'>{$data[$id]['name']}</td>";
|
echo "<td class='td-others'>{$data[$id]['name']}</td>";
|
||||||
echo "<td class='td-others'>{$data[$id]['surname']}</td>";
|
echo "<td class='td-others'>{$data[$id]['surname']}</td>";
|
||||||
echo "<td class='td-others'>{$data[$id]['email']}</td>";
|
echo "<td class='td-others'>{$data[$id]['email']}</td>";
|
||||||
echo "<td class='td-others'>$birthDate</td>";
|
echo "<td class='td-others'>$birthDate</td>";
|
||||||
echo "</tr>";
|
echo "</tr>";
|
||||||
} else {
|
} else {
|
||||||
echo "<tr><td colspan='4'>No data found for ID $id</td></tr>";
|
echo "<tr><td colspan='4'>No data found for ID $id</td></tr>";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
?>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
<!-- footer -->
|
||||||
|
<footer class="d-flex flex-column justify-content-center align-items-center pb-4 py-lg-5 py-md-5">
|
||||||
|
<div class="scrollToTopBtn">
|
||||||
|
<button onclick="topFunction()" id="scrollToTopBtn"><i class="fa-solid fa-chevron-up"></i></button>
|
||||||
|
</div>
|
||||||
|
<img src="assets/images/footer-logo.webp" class="mt-3 mt-md-0" alt="">
|
||||||
|
<div class="footer-copyright">
|
||||||
|
(c)2024 Globaly. All rights reserved. |
|
||||||
|
<a href="#">Privacy Policy</a>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// Get the button
|
||||||
|
let mybutton = document.getElementById("scrollToTopBtn");
|
||||||
|
|
||||||
|
window.onscroll = function() {
|
||||||
|
scrollFunction()
|
||||||
|
};
|
||||||
|
|
||||||
|
function scrollFunction() {
|
||||||
|
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
|
||||||
|
mybutton.style.display = "block";
|
||||||
|
} else {
|
||||||
|
mybutton.style.display = "none";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// When the user clicks on the button, scroll to the top of the document
|
||||||
|
function topFunction() {
|
||||||
|
document.body.scrollTop = 0;
|
||||||
|
document.documentElement.scrollTop = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
function findmatch() {
|
||||||
|
if (window.XMLHttpRequest) {
|
||||||
|
xmlhttp = new XMLHttpRequest();
|
||||||
|
} else {
|
||||||
|
xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
|
||||||
|
}
|
||||||
|
|
||||||
|
xmlhttp.onreadystatechange = function() {
|
||||||
|
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
|
||||||
|
document.getElementById('results').innerHTML = xmlhttp.responseText;
|
||||||
}
|
}
|
||||||
?>
|
}
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
xmlhttp.open('GET', 'search_text=' + document.search.search_text.value, true);
|
||||||
|
xmlhttp.send();
|
||||||
|
|
||||||
</section>
|
}
|
||||||
<!-- footer -->
|
</script>
|
||||||
<footer class="d-flex flex-column justify-content-center align-items-center pb-4 py-lg-5 py-md-5">
|
|
||||||
<img src="assets/images/footer-logo.webp" class="mt-3 mt-md-0" alt="">
|
|
||||||
<div class="footer-copyright">
|
|
||||||
(c)2024 Globaly. All rights reserved. |
|
|
||||||
<a href="#">Privacy Policy</a>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
|
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</php>
|
</php>
|
||||||
@@ -5,7 +5,6 @@ require_once 'core.inc.php';
|
|||||||
|
|
||||||
if (loggedin()) {
|
if (loggedin()) {
|
||||||
$name = getuserfield('name');
|
$name = getuserfield('name');
|
||||||
// echo ' You are logged in '. $name.' <a href="logout.php">Log out</a><br>';
|
|
||||||
header('Location: ../index.php');
|
header('Location: ../index.php');
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,6 @@ if (isset($_POST['email']) && isset($_POST['password'])) {
|
|||||||
if ($query_num_rows == 0) {
|
if ($query_num_rows == 0) {
|
||||||
echo 'invalid email/password combination';
|
echo 'invalid email/password combination';
|
||||||
} else if ($query_num_rows == 1) {
|
} else if ($query_num_rows == 1) {
|
||||||
//treba nam $user_id
|
|
||||||
$row = mysqli_fetch_assoc($query_run);
|
$row = mysqli_fetch_assoc($query_run);
|
||||||
$user_id = $row['id'];
|
$user_id = $row['id'];
|
||||||
|
|
||||||
|
|||||||
0
search_people.php
Normal file
0
search_people.php
Normal file
52
services.php
52
services.php
@@ -49,10 +49,10 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="form-container">
|
<div class="form-container">
|
||||||
<form class="form-search d-flex align-items-center d-sm-flex justify-content-sm-between" role="search">
|
<form class="form-search d-flex align-items-center d-sm-flex justify-content-sm-between mb-0" role="search">
|
||||||
<input id="src-input" class="form-control rounded-0 border-0" type="search" placeholder="Search ...">
|
<input id="src-input" class="form-control rounded-0 border-0" type="search" placeholder="Search ...">
|
||||||
<button class="btn" type="submit" style="padding-bottom: 0px;padding-top: 0px;">
|
<button class="btn" type="submit" style="padding-bottom: 0px;padding-top: 0px;">
|
||||||
<span class="material-icons">
|
<span class="material-icons pt-1">
|
||||||
search
|
search
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
@@ -97,17 +97,15 @@
|
|||||||
<img src="assets/images/logo.webp" class="logo-img mt-3 mt-lg-0 mt-md-0" alt="">
|
<img src="assets/images/logo.webp" class="logo-img mt-3 mt-lg-0 mt-md-0" alt="">
|
||||||
<div class="dropdown" id="dropdownid" style="position: absolute; width:fit-content;">
|
<div class="dropdown" id="dropdownid" style="position: absolute; width:fit-content;">
|
||||||
<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
|
<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
<i class="fa-solid fa-users"></i>
|
<i class="fa-solid fa-users"></i>
|
||||||
|
|
||||||
</a>
|
</a>
|
||||||
<ul class="dropdown-menu" aria-labelledby="dropdownMenuLink">
|
<ul class="dropdown-menu" aria-labelledby="dropdownMenuLink">
|
||||||
<?php if (loggedin()) {
|
<?php if (loggedin()) {
|
||||||
echo '<li><a class="dropdown-item" href="login.html">Log in</a></li>
|
echo '<li><a class="dropdown-item" href="php/logout.php">Log out</a></li>';
|
||||||
<li><a class="dropdown-item" href="signup.php">Sign up</a></li>
|
|
||||||
<li><a class="dropdown-item" href="php/logout.php">Log out</a></li>';
|
|
||||||
} else {
|
} else {
|
||||||
echo '<li><a class="dropdown-item" href="login.html">Log in</a></li>
|
echo '<li><a class="dropdown-item" href="login.html">Log in</a></li>
|
||||||
<li><a class="dropdown-item" href="signup.php">Sign up</a></li>';
|
<li><a class="dropdown-item" href="signup.php">Sign up</a></li>';
|
||||||
} ?>
|
} ?>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@@ -391,14 +389,38 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
<!-- footer -->
|
<!-- footer -->
|
||||||
<footer class="d-flex flex-column justify-content-center align-items-center pb-4 py-lg-5 py-md-5">
|
<footer class="d-flex flex-column justify-content-center align-items-center pb-4 py-lg-5 py-md-5">
|
||||||
<img src="assets/images/footer-logo.webp" class="mt-3 mt-md-0" alt="">
|
<div class="scrollToTopBtn">
|
||||||
<div class="footer-copyright">
|
<button onclick="topFunction()" id="scrollToTopBtn"><i class="fa-solid fa-chevron-up"></i></button>
|
||||||
(c)2024 Globaly. All rights reserved. |
|
</div>
|
||||||
<a href="#">Privacy Policy</a>
|
<img src="assets/images/footer-logo.webp" class="mt-3 mt-md-0" alt="">
|
||||||
</div>
|
<div class="footer-copyright">
|
||||||
</footer>
|
(c)2024 Globaly. All rights reserved. |
|
||||||
|
<a href="#">Privacy Policy</a>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// Get the button
|
||||||
|
let mybutton = document.getElementById("scrollToTopBtn");
|
||||||
|
|
||||||
|
window.onscroll = function() {scrollFunction()};
|
||||||
|
|
||||||
|
function scrollFunction() {
|
||||||
|
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
|
||||||
|
mybutton.style.display = "block";
|
||||||
|
} else {
|
||||||
|
mybutton.style.display = "none";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// When the user clicks on the button, scroll to the top of the document
|
||||||
|
function topFunction() {
|
||||||
|
document.body.scrollTop = 0;
|
||||||
|
document.documentElement.scrollTop = 0;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
|
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
|||||||
30
signup.php
30
signup.php
@@ -16,7 +16,7 @@
|
|||||||
<title>Globaly - Full Cycle Business Management & Consulting Responsive WordPress Theme</title>
|
<title>Globaly - Full Cycle Business Management & Consulting Responsive WordPress Theme</title>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.fa-solid{
|
.fa-solid {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 3%;
|
right: 3%;
|
||||||
top: 46%;
|
top: 46%;
|
||||||
@@ -73,9 +73,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 768px) {
|
@media screen and (min-width: 768px) {
|
||||||
.fa-solid{
|
.fa-solid {
|
||||||
top: 46%;
|
top: 46%;
|
||||||
|
|
||||||
}
|
}
|
||||||
#pswd_info {
|
#pswd_info {
|
||||||
|
|
||||||
@@ -86,10 +85,11 @@
|
|||||||
|
|
||||||
@media screen and (min-width: 992px) {
|
@media screen and (min-width: 992px) {
|
||||||
|
|
||||||
.fa-solid{
|
.fa-solid {
|
||||||
top: 45%;
|
top: 45%;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#pswd_info {
|
#pswd_info {
|
||||||
|
|
||||||
bottom: 15%;
|
bottom: 15%;
|
||||||
@@ -228,23 +228,19 @@
|
|||||||
// Toggle Password show
|
// Toggle Password show
|
||||||
$("#togglePassword").removeClass("fa-solid fa-eye").addClass("fa-solid fa-eye-slash");
|
$("#togglePassword").removeClass("fa-solid fa-eye").addClass("fa-solid fa-eye-slash");
|
||||||
$("#togglePassword").click(function() {
|
$("#togglePassword").click(function() {
|
||||||
const passwordInput = $("#password");
|
const passwordInput = $("#password");
|
||||||
const type = passwordInput.attr("type");
|
const type = passwordInput.attr("type");
|
||||||
|
|
||||||
if (type === "password") {
|
if (type === "password") {
|
||||||
passwordInput.attr("type", "text");
|
passwordInput.attr("type", "text");
|
||||||
$("#togglePassword").removeClass("fa-solid fa-eye-slash").addClass("fa-solid fa-eye");
|
$("#togglePassword").removeClass("fa-solid fa-eye-slash").addClass("fa-solid fa-eye");
|
||||||
} else {
|
} else {
|
||||||
passwordInput.attr("type", "password");
|
passwordInput.attr("type", "password");
|
||||||
$("#togglePassword").removeClass("fa-solid fa-eye").addClass("fa-solid fa-eye-slash");
|
$("#togglePassword").removeClass("fa-solid fa-eye").addClass("fa-solid fa-eye-slash");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
2
slick-1.8.1/.gitignore
vendored
Normal file
2
slick-1.8.1/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
.sass-cache
|
||||||
|
node_modules
|
||||||
35
slick-1.8.1/CONTRIBUTING.markdown
Normal file
35
slick-1.8.1/CONTRIBUTING.markdown
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
## Submitting issues
|
||||||
|
|
||||||
|
### Test case required
|
||||||
|
|
||||||
|
**All bug reports and problem issues require a jsFiddle**.
|
||||||
|
[Please fork this JSFiddle as a baseline](http://jsfiddle.net/simeydotme/fmo50w7n/).
|
||||||
|
|
||||||
|
+ A test case clearly demonstrates the bug or issue.
|
||||||
|
+ It contains the bare minimum HTML, CSS, and JavaScript required to demonstrate the bug.
|
||||||
|
+ Assets are not minified (we cannot debug .min.js files).
|
||||||
|
+ A link to your production site is **not** a reduced test case.
|
||||||
|
|
||||||
|
Providing a test case is the best way to get your issue addressed. Without a test case; your issue may be closed.
|
||||||
|
You must provide a clear and simple way to reproduce the issue with the provided fiddle.
|
||||||
|
|
||||||
|
## Support
|
||||||
|
|
||||||
|
Although Slick is designed to be super easy to use, there's always things that can go wrong, especially when interacting with other plugins and complicated websites. If you are **having problems getting Slick to work**, or can't figure something out, **this repository**'s issues section **is not the place to ask about it**.
|
||||||
|
|
||||||
|
I have set up a subreddit for Slick discussion at [reddit.com/r/slickcarousel](http://www.reddit.com/r/slickcarousel/).
|
||||||
|
And a gitter chatroom here: [gitter.im/kenwheeler/slick](https://gitter.im/kenwheeler/slick).
|
||||||
|
And finally you can ask the world for help, and find out if anyone else has your problem at [stackoverflow](http://stackoverflow.com/search?q=slick+carousel).
|
||||||
|
|
||||||
|
Please use these forums as an area to discuss Slick and any issues you may have.
|
||||||
|
|
||||||
|
## Feature Requests
|
||||||
|
|
||||||
|
If you would like to request or propose a feature, please do so in the the Slick subreddit or gitter chat:
|
||||||
|
[reddit.com/r/slickcarousel](http://www.reddit.com/r/slickcarousel/) / [gitter.im/kenwheeler/slick](https://gitter.im/kenwheeler/slick).
|
||||||
|
|
||||||
|
## Pull requests
|
||||||
|
|
||||||
|
**Contributions are welcome**! That said, please *be prepared to edit* your pull request at request, and provide a jsFiddle of your fork working interoperably with every "mode" that Slick supports, and with varying numbers of slides, slidesToShow & slidesToScroll. Failure to do so will result in your pull request being closed.
|
||||||
|
|
||||||
|
*Please note that while Slick is open source, this is still my baby, and by submitting a pull request you are authorizing me to edit or modify it in any way shape or form. You will be listed in Github as a contributor, but I have and will continue to steer the direction of this project.*
|
||||||
50
slick-1.8.1/ISSUE_TEMPLATE.md
Normal file
50
slick-1.8.1/ISSUE_TEMPLATE.md
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
|
||||||
|
> short description of the bug / issue, provide more detail below.
|
||||||
|
|
||||||
|
====================================================================
|
||||||
|
|
||||||
|
|
||||||
|
###### `[ paste your jsfiddle link here ]`
|
||||||
|
|
||||||
|
use this jsfiddle to reproduce your bug:
|
||||||
|
http://jsfiddle.net/simeydotme/fmo50w7n/
|
||||||
|
we will likely close your issue without it.
|
||||||
|
|
||||||
|
|
||||||
|
====================================================================
|
||||||
|
|
||||||
|
|
||||||
|
#### Steps to reproduce the problem
|
||||||
|
|
||||||
|
1. ...
|
||||||
|
2. ...
|
||||||
|
|
||||||
|
|
||||||
|
====================================================================
|
||||||
|
|
||||||
|
|
||||||
|
#### What is the expected behaviour?
|
||||||
|
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
|
====================================================================
|
||||||
|
|
||||||
|
|
||||||
|
#### What is observed behaviour?
|
||||||
|
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
|
====================================================================
|
||||||
|
|
||||||
|
|
||||||
|
#### More Details
|
||||||
|
|
||||||
|
- Which browsers/versions does it happen on?
|
||||||
|
- Which jQuery/Slick version are you using?
|
||||||
|
- Did this work before?
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
20
slick-1.8.1/LICENSE
Normal file
20
slick-1.8.1/LICENSE
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2013-2016
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
|
this software and associated documentation files (the "Software"), to deal in
|
||||||
|
the Software without restriction, including without limitation the rights to
|
||||||
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||||
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||||
|
subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||||
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||||
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||||
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||||
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
8
slick-1.8.1/Makefile
Normal file
8
slick-1.8.1/Makefile
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
|
||||||
|
build: components slick.js slick.css
|
||||||
|
@component build --dev
|
||||||
|
|
||||||
|
components: component.json
|
||||||
|
@component install --dev
|
||||||
|
|
||||||
|
.PHONY: clean
|
||||||
292
slick-1.8.1/README.markdown
Normal file
292
slick-1.8.1/README.markdown
Normal file
@@ -0,0 +1,292 @@
|
|||||||
|
slick
|
||||||
|
-------
|
||||||
|
|
||||||
|
[1]: <https://github.com/kenwheeler/slick>
|
||||||
|
|
||||||
|
_the last carousel you'll ever need_
|
||||||
|
|
||||||
|
#### Demo
|
||||||
|
|
||||||
|
[http://kenwheeler.github.io/slick](http://kenwheeler.github.io/slick/)
|
||||||
|
|
||||||
|
#### CDN
|
||||||
|
|
||||||
|
To start working with Slick right away, there's a couple of CDN choices availabile
|
||||||
|
to serve the files as close, and fast as possible to your users:
|
||||||
|
|
||||||
|
- https://cdnjs.com/libraries/slick-carousel
|
||||||
|
- https://www.jsdelivr.com/projects/jquery.slick
|
||||||
|
|
||||||
|
##### Example using jsDelivr
|
||||||
|
|
||||||
|
Just add a link to the css file in your `<head>`:
|
||||||
|
|
||||||
|
```html
|
||||||
|
<!-- Add the slick-theme.css if you want default styling -->
|
||||||
|
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/gh/kenwheeler/slick@1.8.0/slick/slick.css"/>
|
||||||
|
<!-- Add the slick-theme.css if you want default styling -->
|
||||||
|
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/gh/kenwheeler/slick@1.8.0/slick/slick-theme.css"/>
|
||||||
|
```
|
||||||
|
|
||||||
|
Then, before your closing ```<body>``` tag add:
|
||||||
|
|
||||||
|
```html
|
||||||
|
<script type="text/javascript" src="//cdn.jsdelivr.net/gh/kenwheeler/slick@1.8.0/slick/slick.min.js"></script>
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Package Managers
|
||||||
|
|
||||||
|
```sh
|
||||||
|
# Bower
|
||||||
|
bower install --save slick-carousel
|
||||||
|
|
||||||
|
# NPM
|
||||||
|
npm install slick-carousel
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Contributing
|
||||||
|
|
||||||
|
PLEASE review CONTRIBUTING.markdown prior to requesting a feature, filing a pull request or filing an issue.
|
||||||
|
|
||||||
|
### Data Attribute Settings
|
||||||
|
|
||||||
|
In slick 1.5 you can now add settings using the data-slick attribute. You still need to call $(element).slick() to initialize slick on the element.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
```html
|
||||||
|
<div data-slick='{"slidesToShow": 4, "slidesToScroll": 4}'>
|
||||||
|
<div><h3>1</h3></div>
|
||||||
|
<div><h3>2</h3></div>
|
||||||
|
<div><h3>3</h3></div>
|
||||||
|
<div><h3>4</h3></div>
|
||||||
|
<div><h3>5</h3></div>
|
||||||
|
<div><h3>6</h3></div>
|
||||||
|
</div>
|
||||||
|
```
|
||||||
|
|
||||||
|
### Settings
|
||||||
|
|
||||||
|
Option | Type | Default | Description
|
||||||
|
------ | ---- | ------- | -----------
|
||||||
|
accessibility | boolean | true | Enables tabbing and arrow key navigation. Unless `autoplay: true`, sets browser focus to current slide (or first of current slide set, if multiple `slidesToShow`) after slide change. For full a11y compliance enable focusOnChange in addition to this.
|
||||||
|
adaptiveHeight | boolean | false | Adapts slider height to the current slide
|
||||||
|
appendArrows | string | $(element) | Change where the navigation arrows are attached (Selector, htmlString, Array, Element, jQuery object)
|
||||||
|
appendDots | string | $(element) | Change where the navigation dots are attached (Selector, htmlString, Array, Element, jQuery object)
|
||||||
|
arrows | boolean | true | Enable Next/Prev arrows
|
||||||
|
asNavFor | string | $(element) | Enables syncing of multiple sliders
|
||||||
|
autoplay | boolean | false | Enables auto play of slides
|
||||||
|
autoplaySpeed | int | 3000 | Auto play change interval
|
||||||
|
centerMode | boolean | false | Enables centered view with partial prev/next slides. Use with odd numbered slidesToShow counts.
|
||||||
|
centerPadding | string | '50px' | Side padding when in center mode. (px or %)
|
||||||
|
cssEase | string | 'ease' | CSS3 easing
|
||||||
|
customPaging | function | n/a | Custom paging templates. See source for use example.
|
||||||
|
dots | boolean | false | Current slide indicator dots
|
||||||
|
dotsClass | string | 'slick-dots' | Class for slide indicator dots container
|
||||||
|
draggable | boolean | true | Enables desktop dragging
|
||||||
|
easing | string | 'linear' | animate() fallback easing
|
||||||
|
edgeFriction | integer | 0.15 | Resistance when swiping edges of non-infinite carousels
|
||||||
|
fade | boolean | false | Enables fade
|
||||||
|
focusOnSelect | boolean | false | Enable focus on selected element (click)
|
||||||
|
focusOnChange | boolean | false | Puts focus on slide after change
|
||||||
|
infinite | boolean | true | Infinite looping
|
||||||
|
initialSlide | integer | 0 | Slide to start on
|
||||||
|
lazyLoad | string | 'ondemand' | Accepts 'ondemand' or 'progressive' for lazy load technique. 'ondemand' will load the image as soon as you slide to it, 'progressive' loads one image after the other when the page loads.
|
||||||
|
mobileFirst | boolean | false | Responsive settings use mobile first calculation
|
||||||
|
nextArrow | string (html \| jQuery selector) \| object (DOM node \| jQuery object) | `<button type="button" class="slick-next">Next</button>` | Allows you to select a node or customize the HTML for the "Next" arrow.
|
||||||
|
pauseOnDotsHover | boolean | false | Pauses autoplay when a dot is hovered
|
||||||
|
pauseOnFocus | boolean | true | Pauses autoplay when slider is focussed
|
||||||
|
pauseOnHover | boolean | true | Pauses autoplay on hover
|
||||||
|
prevArrow | string (html \| jQuery selector) \| object (DOM node \| jQuery object) | `<button type="button" class="slick-prev">Previous</button>` | Allows you to select a node or customize the HTML for the "Previous" arrow.
|
||||||
|
respondTo | string | 'window' | Width that responsive object responds to. Can be 'window', 'slider' or 'min' (the smaller of the two).
|
||||||
|
responsive | array | null | Array of objects [containing breakpoints and settings objects (see example)](#responsive-option-example). Enables settings at given `breakpoint`. Set `settings` to "unslick" instead of an object to disable slick at a given breakpoint.
|
||||||
|
rows | int | 1 | Setting this to more than 1 initializes grid mode. Use slidesPerRow to set how many slides should be in each row.
|
||||||
|
rtl | boolean | false | Change the slider's direction to become right-to-left
|
||||||
|
slide | string | '' | Slide element query
|
||||||
|
slidesPerRow | int | 1 | With grid mode initialized via the rows option, this sets how many slides are in each grid row.
|
||||||
|
slidesToScroll | int | 1 | # of slides to scroll at a time
|
||||||
|
slidesToShow | int | 1 | # of slides to show at a time
|
||||||
|
speed | int | 300 | Transition speed
|
||||||
|
swipe | boolean | true | Enables touch swipe
|
||||||
|
swipeToSlide | boolean | false | Swipe to slide irrespective of slidesToScroll
|
||||||
|
touchMove | boolean | true | Enables slide moving with touch
|
||||||
|
touchThreshold | int | 5 | To advance slides, the user must swipe a length of (1/touchThreshold) * the width of the slider.
|
||||||
|
useCSS | boolean | true | Enable/Disable CSS Transitions
|
||||||
|
useTransform | boolean | true | Enable/Disable CSS Transforms
|
||||||
|
variableWidth | boolean | false | Disables automatic slide width calculation
|
||||||
|
vertical | boolean | false | Vertical slide direction
|
||||||
|
verticalSwiping | boolean | false | Changes swipe direction to vertical
|
||||||
|
waitForAnimate | boolean | true | Ignores requests to advance the slide while animating
|
||||||
|
zIndex | number | 1000 | Set the zIndex values for slides, useful for IE9 and lower
|
||||||
|
|
||||||
|
##### Responsive Option Example
|
||||||
|
The responsive option, and value, is quite unique and powerful.
|
||||||
|
You can use it like so:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
$(".slider").slick({
|
||||||
|
|
||||||
|
// normal options...
|
||||||
|
infinite: false,
|
||||||
|
|
||||||
|
// the magic
|
||||||
|
responsive: [{
|
||||||
|
|
||||||
|
breakpoint: 1024,
|
||||||
|
settings: {
|
||||||
|
slidesToShow: 3,
|
||||||
|
infinite: true
|
||||||
|
}
|
||||||
|
|
||||||
|
}, {
|
||||||
|
|
||||||
|
breakpoint: 600,
|
||||||
|
settings: {
|
||||||
|
slidesToShow: 2,
|
||||||
|
dots: true
|
||||||
|
}
|
||||||
|
|
||||||
|
}, {
|
||||||
|
|
||||||
|
breakpoint: 300,
|
||||||
|
settings: "unslick" // destroys slick
|
||||||
|
|
||||||
|
}]
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Events
|
||||||
|
|
||||||
|
In slick 1.4, callback methods were deprecated and replaced with events. Use them before the initialization of slick as shown below:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
// On swipe event
|
||||||
|
$('.your-element').on('swipe', function(event, slick, direction){
|
||||||
|
console.log(direction);
|
||||||
|
// left
|
||||||
|
});
|
||||||
|
|
||||||
|
// On edge hit
|
||||||
|
$('.your-element').on('edge', function(event, slick, direction){
|
||||||
|
console.log('edge was hit')
|
||||||
|
});
|
||||||
|
|
||||||
|
// On before slide change
|
||||||
|
$('.your-element').on('beforeChange', function(event, slick, currentSlide, nextSlide){
|
||||||
|
console.log(nextSlide);
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
|
Event | Params | Description
|
||||||
|
------ | -------- | -----------
|
||||||
|
afterChange | event, slick, currentSlide | After slide change callback
|
||||||
|
beforeChange | event, slick, currentSlide, nextSlide | Before slide change callback
|
||||||
|
breakpoint | event, slick, breakpoint | Fires after a breakpoint is hit
|
||||||
|
destroy | event, slick | When slider is destroyed, or unslicked.
|
||||||
|
edge | event, slick, direction | Fires when an edge is overscrolled in non-infinite mode.
|
||||||
|
init | event, slick | When Slick initializes for the first time callback. Note that this event should be defined before initializing the slider.
|
||||||
|
reInit | event, slick | Every time Slick (re-)initializes callback
|
||||||
|
setPosition | event, slick | Every time Slick recalculates position
|
||||||
|
swipe | event, slick, direction | Fires after swipe/drag
|
||||||
|
lazyLoaded | event, slick, image, imageSource | Fires after image loads lazily
|
||||||
|
lazyLoadError | event, slick, image, imageSource | Fires after image fails to load
|
||||||
|
|
||||||
|
|
||||||
|
#### Methods
|
||||||
|
|
||||||
|
Methods are called on slick instances through the slick method itself in version 1.4, see below:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
// Add a slide
|
||||||
|
$('.your-element').slick('slickAdd',"<div></div>");
|
||||||
|
|
||||||
|
// Get the current slide
|
||||||
|
var currentSlide = $('.your-element').slick('slickCurrentSlide');
|
||||||
|
```
|
||||||
|
|
||||||
|
This new syntax allows you to call any internal slick method as well:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
// Manually refresh positioning of slick
|
||||||
|
$('.your-element').slick('setPosition');
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
Method | Argument | Description
|
||||||
|
------ | -------- | -----------
|
||||||
|
`slick` | options : object | Initializes Slick
|
||||||
|
`unslick` | | Destroys Slick
|
||||||
|
`slickNext` | | Triggers next slide
|
||||||
|
`slickPrev` | | Triggers previous slide
|
||||||
|
`slickPause` | | Pause Autoplay
|
||||||
|
`slickPlay` | | Start Autoplay (_will also set `autoplay` option to `true`_)
|
||||||
|
`slickGoTo` | index : int, dontAnimate : bool | Goes to slide by index, skipping animation if second parameter is set to true
|
||||||
|
`slickCurrentSlide` | | Returns the current slide index
|
||||||
|
`slickAdd` | element : html or DOM object, index: int, addBefore: bool | Add a slide. If an index is provided, will add at that index, or before if addBefore is set. If no index is provided, add to the end or to the beginning if addBefore is set. Accepts HTML String || Object
|
||||||
|
`slickRemove` | index: int, removeBefore: bool | Remove slide by index. If removeBefore is set true, remove slide preceding index, or the first slide if no index is specified. If removeBefore is set to false, remove the slide following index, or the last slide if no index is set.
|
||||||
|
`slickFilter` | filter : selector or function | Filters slides using jQuery .filter syntax
|
||||||
|
`slickUnfilter` | | Removes applied filter
|
||||||
|
`slickGetOption` | option : string(option name) | Gets an option value.
|
||||||
|
`slickSetOption` | change an option, `refresh` is always `boolean` and will update UI changes...
|
||||||
|
| `option, value, refresh` | change a [single `option`](https://github.com/kenwheeler/slick#settings) to given `value`; `refresh` is optional.
|
||||||
|
| `"responsive", [{ breakpoint: n, settings: {} }, ... ], refresh` | change or add [whole sets of responsive options](#responsive-option-example)
|
||||||
|
| `{ option: value, option: value, ... }, refresh` | change [multiple `option`s](https://github.com/kenwheeler/slick#settings) to corresponding `value`s.
|
||||||
|
|
||||||
|
|
||||||
|
#### Example
|
||||||
|
|
||||||
|
Initialize with:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
$(element).slick({
|
||||||
|
dots: true,
|
||||||
|
speed: 500
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
|
Change the speed with:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
$(element).slick('slickSetOption', 'speed', 5000, true);
|
||||||
|
```
|
||||||
|
|
||||||
|
Destroy with:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
$(element).slick('unslick');
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
#### Sass Variables
|
||||||
|
|
||||||
|
Variable | Type | Default | Description
|
||||||
|
------ | ---- | ------- | -----------
|
||||||
|
$slick-font-path | string | "./fonts/" | Directory path for the slick icon font
|
||||||
|
$slick-font-family | string | "slick" | Font-family for slick icon font
|
||||||
|
$slick-loader-path | string | "./" | Directory path for the loader image
|
||||||
|
$slick-arrow-color | color | white | Color of the left/right arrow icons
|
||||||
|
$slick-dot-color | color | black | Color of the navigation dots
|
||||||
|
$slick-dot-color-active | color | $slick-dot-color | Color of the active navigation dot
|
||||||
|
$slick-prev-character | string | '\2190' | Unicode character code for the previous arrow icon
|
||||||
|
$slick-next-character | string | '\2192' | Unicode character code for the next arrow icon
|
||||||
|
$slick-dot-character | string | '\2022' | Unicode character code for the navigation dot icon
|
||||||
|
$slick-dot-size | pixels | 6px | Size of the navigation dots
|
||||||
|
|
||||||
|
#### Browser support
|
||||||
|
|
||||||
|
Slick works on IE8+ in addition to other modern browsers such as Chrome, Firefox, and Safari.
|
||||||
|
|
||||||
|
#### Dependencies
|
||||||
|
|
||||||
|
jQuery 1.7
|
||||||
|
|
||||||
|
#### License
|
||||||
|
|
||||||
|
Copyright (c) 2017 Ken Wheeler
|
||||||
|
|
||||||
|
Licensed under the MIT license.
|
||||||
|
|
||||||
|
Free as in Bacon.
|
||||||
32
slick-1.8.1/bower.json
Normal file
32
slick-1.8.1/bower.json
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"name": "slick-carousel",
|
||||||
|
"main": [
|
||||||
|
"slick/slick.js",
|
||||||
|
"slick/slick.css",
|
||||||
|
"slick/slick.less",
|
||||||
|
"slick/slick.scss"
|
||||||
|
],
|
||||||
|
"homepage": "https://github.com/kenwheeler/slick",
|
||||||
|
"authors": [
|
||||||
|
"Ken Wheeler <ken_wheeler@me.com>"
|
||||||
|
],
|
||||||
|
"description": "the last carousel you'll ever need",
|
||||||
|
"keywords": [
|
||||||
|
"responsive",
|
||||||
|
"carousel",
|
||||||
|
"jquery"
|
||||||
|
],
|
||||||
|
"license": "MIT",
|
||||||
|
"ignore": [
|
||||||
|
"**/.*",
|
||||||
|
"node_modules",
|
||||||
|
"bower_components",
|
||||||
|
"test",
|
||||||
|
"tests",
|
||||||
|
"package.json",
|
||||||
|
"index.html"
|
||||||
|
],
|
||||||
|
"dependencies": {
|
||||||
|
"jquery": ">=1.7"
|
||||||
|
}
|
||||||
|
}
|
||||||
18
slick-1.8.1/component.json
Normal file
18
slick-1.8.1/component.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"name": "slick",
|
||||||
|
"repo": "kenwheeler/slick",
|
||||||
|
"description": "the last carousel you'll ever need",
|
||||||
|
"version": "1.8.0",
|
||||||
|
"keywords": ["ui", "jquery", "carousel", "responsive", "slider"],
|
||||||
|
"dependencies": {
|
||||||
|
"component/jquery": "*"
|
||||||
|
},
|
||||||
|
"development": {},
|
||||||
|
"scripts": {
|
||||||
|
"slick/slick.js": "slick.js"
|
||||||
|
},
|
||||||
|
"styles": {
|
||||||
|
"slick/slick.css": "slick.css",
|
||||||
|
"slick/slick-theme.css": "slick-theme.css"
|
||||||
|
}
|
||||||
|
}
|
||||||
373
slick-1.8.1/index.html
Normal file
373
slick-1.8.1/index.html
Normal file
@@ -0,0 +1,373 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Slick Playground</title>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link rel="stylesheet" type="text/css" href="./slick/slick.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="./slick/slick-theme.css">
|
||||||
|
<style type="text/css">
|
||||||
|
html, body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slider {
|
||||||
|
width: 50%;
|
||||||
|
margin: 100px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-slide {
|
||||||
|
margin: 0px 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-slide img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-prev:before,
|
||||||
|
.slick-next:before {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.slick-slide {
|
||||||
|
transition: all ease-in-out .3s;
|
||||||
|
opacity: .2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-active {
|
||||||
|
opacity: .5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-current {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<section class="vertical-center-4 slider">
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=1">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=2">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=3">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=4">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=5">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=6">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=7">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=8">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=9">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=10">
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="vertical-center-3 slider">
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=1">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=2">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=3">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=4">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=5">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=6">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=7">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=8">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=9">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=10">
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="vertical-center-2 slider">
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=1">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=2">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=3">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=4">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=5">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=6">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=7">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=8">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=9">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=10">
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="vertical-center slider">
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=1">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=2">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=3">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=4">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=5">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=6">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=7">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=8">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=9">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=10">
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="vertical slider">
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=1">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=2">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=3">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=4">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=5">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=6">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=7">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=8">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=9">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x100?text=10">
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<section class="regular slider">
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x300?text=1">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x300?text=2">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x300?text=3">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x300?text=4">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x300?text=5">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x300?text=6">
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="center slider">
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x300?text=1">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x300?text=2">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x300?text=3">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x300?text=4">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x300?text=5">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x300?text=6">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x300?text=7">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x300?text=8">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x300?text=9">
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="variable slider">
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x300?text=1">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/200x300?text=2">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/100x300?text=3">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/200x300?text=4">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/350x300?text=5">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="http://placehold.it/300x300?text=6">
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="lazy slider" data-sizes="50vw">
|
||||||
|
<div>
|
||||||
|
<img data-lazy="http://placehold.it/350x300?text=1-350w" data-srcset="http://placehold.it/650x300?text=1-650w 650w, http://placehold.it/960x300?text=1-960w 960w" data-sizes="100vw">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img data-lazy="http://placehold.it/350x300?text=2-350w" data-srcset="http://placehold.it/650x300?text=2-650w 650w, http://placehold.it/960x300?text=2-960w 960w" data-sizes="100vw">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img data-lazy="http://placehold.it/350x300?text=3-350w" data-srcset="http://placehold.it/650x300?text=3-650w 650w, http://placehold.it/960x300?text=3-960w 960w" data-sizes="100vw">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img data-lazy="http://placehold.it/350x300?text=4-350w" data-srcset="http://placehold.it/650x300?text=4-650w 650w, http://placehold.it/960x300?text=4-960w 960w" data-sizes="100vw">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img data-lazy="http://placehold.it/350x300?text=5-350w" data-srcset="http://placehold.it/650x300?text=5-650w 650w, http://placehold.it/960x300?text=5-960w 960w" data-sizes="100vw">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- this slide should inherit the sizes attr from the parent slider -->
|
||||||
|
<img data-lazy="http://placehold.it/350x300?text=6-350w" data-srcset="http://placehold.it/650x300?text=6-650w 650w, http://placehold.it/960x300?text=6-960w 960w">
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-2.2.0.min.js" type="text/javascript"></script>
|
||||||
|
<script src="./slick/slick.js" type="text/javascript" charset="utf-8"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(document).on('ready', function() {
|
||||||
|
$(".vertical-center-4").slick({
|
||||||
|
dots: true,
|
||||||
|
vertical: true,
|
||||||
|
centerMode: true,
|
||||||
|
slidesToShow: 4,
|
||||||
|
slidesToScroll: 2
|
||||||
|
});
|
||||||
|
$(".vertical-center-3").slick({
|
||||||
|
dots: true,
|
||||||
|
vertical: true,
|
||||||
|
centerMode: true,
|
||||||
|
slidesToShow: 3,
|
||||||
|
slidesToScroll: 3
|
||||||
|
});
|
||||||
|
$(".vertical-center-2").slick({
|
||||||
|
dots: true,
|
||||||
|
vertical: true,
|
||||||
|
centerMode: true,
|
||||||
|
slidesToShow: 2,
|
||||||
|
slidesToScroll: 2
|
||||||
|
});
|
||||||
|
$(".vertical-center").slick({
|
||||||
|
dots: true,
|
||||||
|
vertical: true,
|
||||||
|
centerMode: true,
|
||||||
|
});
|
||||||
|
$(".vertical").slick({
|
||||||
|
dots: true,
|
||||||
|
vertical: true,
|
||||||
|
slidesToShow: 3,
|
||||||
|
slidesToScroll: 3
|
||||||
|
});
|
||||||
|
$(".regular").slick({
|
||||||
|
dots: true,
|
||||||
|
infinite: true,
|
||||||
|
slidesToShow: 3,
|
||||||
|
slidesToScroll: 3
|
||||||
|
});
|
||||||
|
$(".center").slick({
|
||||||
|
dots: true,
|
||||||
|
infinite: true,
|
||||||
|
centerMode: true,
|
||||||
|
slidesToShow: 5,
|
||||||
|
slidesToScroll: 3
|
||||||
|
});
|
||||||
|
$(".variable").slick({
|
||||||
|
dots: true,
|
||||||
|
infinite: true,
|
||||||
|
variableWidth: true
|
||||||
|
});
|
||||||
|
$(".lazy").slick({
|
||||||
|
lazyLoad: 'ondemand', // ondemand progressive anticipated
|
||||||
|
infinite: true
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
50
slick-1.8.1/package.json
Normal file
50
slick-1.8.1/package.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"name": "slick-carousel",
|
||||||
|
"version": "1.8.1",
|
||||||
|
"description": "the last carousel you'll ever need",
|
||||||
|
"main": "slick/slick.js",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/kenwheeler/slick.git"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"carousel",
|
||||||
|
"slick",
|
||||||
|
"responsive",
|
||||||
|
"js",
|
||||||
|
"slider"
|
||||||
|
],
|
||||||
|
"author": "Ken Wheeler <ken_wheeler@me.com>",
|
||||||
|
"contributors": [
|
||||||
|
{
|
||||||
|
"name": "ken wheeler",
|
||||||
|
"email": "ken_wheeler@me.com",
|
||||||
|
"url": "http://kenwheeler.github.io/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "simon goellner",
|
||||||
|
"email": "simey.me@gmail.com",
|
||||||
|
"url": "http://simey.me"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ahmad el-alfy",
|
||||||
|
"email": "ahmadalfy@gmail.com",
|
||||||
|
"url": "http://www.alfy.me"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "leggomuhgreggo",
|
||||||
|
"email": "gwestneat@gmail.com"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ashley mcknight",
|
||||||
|
"email": "ash@sharpteef.net"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"license": "MIT",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/kenwheeler/slick/issues"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"jquery": ">=1.8.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
34
slick-1.8.1/slick.jquery.json
Normal file
34
slick-1.8.1/slick.jquery.json
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"name": "slick",
|
||||||
|
"title": "slick",
|
||||||
|
"description": "A jQuery responsive touch carousel",
|
||||||
|
"keywords": [
|
||||||
|
"responsive",
|
||||||
|
"slider",
|
||||||
|
"carousel",
|
||||||
|
"touch",
|
||||||
|
"mobile"
|
||||||
|
],
|
||||||
|
"version": "1.8.0",
|
||||||
|
"author": {
|
||||||
|
"name": "Ken Wheeler",
|
||||||
|
"url": "http://kenwheeler.github.io"
|
||||||
|
},
|
||||||
|
"maintainers": [{
|
||||||
|
"name": "Ken Wheeler",
|
||||||
|
"email": "dubmediagroup@gmail.com",
|
||||||
|
"url": "http://www.dubmediagroup.com"
|
||||||
|
}],
|
||||||
|
"licenses": [{
|
||||||
|
"type": "MIT",
|
||||||
|
"url": "https://github.com/kenwheeler/slick/blob/master/LICENSE"
|
||||||
|
}],
|
||||||
|
"demo": "http://kenwheeler.github.io/slick/",
|
||||||
|
"bugs": "https://github.com/kenwheeler/slick/issues",
|
||||||
|
"homepage": "https://github.com/kenwheeler/slick/",
|
||||||
|
"docs": "https://github.com/kenwheeler/slick/",
|
||||||
|
"download": "https://github.com/kenwheeler/slick/archive/master.zip",
|
||||||
|
"dependencies": {
|
||||||
|
"jquery": ">=1.7"
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
slick-1.8.1/slick/ajax-loader.gif
Normal file
BIN
slick-1.8.1/slick/ajax-loader.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.1 KiB |
10
slick-1.8.1/slick/config.rb
Normal file
10
slick-1.8.1/slick/config.rb
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
css_dir = "."
|
||||||
|
sass_dir = "."
|
||||||
|
images_dir = "."
|
||||||
|
fonts_dir = "fonts"
|
||||||
|
relative_assets = true
|
||||||
|
|
||||||
|
output_style = :compact
|
||||||
|
line_comments = false
|
||||||
|
|
||||||
|
preferred_syntax = :scss
|
||||||
BIN
slick-1.8.1/slick/fonts/slick.eot
Normal file
BIN
slick-1.8.1/slick/fonts/slick.eot
Normal file
Binary file not shown.
14
slick-1.8.1/slick/fonts/slick.svg
Normal file
14
slick-1.8.1/slick/fonts/slick.svg
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<metadata>Generated by Fontastic.me</metadata>
|
||||||
|
<defs>
|
||||||
|
<font id="slick" horiz-adv-x="512">
|
||||||
|
<font-face font-family="slick" units-per-em="512" ascent="480" descent="-32"/>
|
||||||
|
<missing-glyph horiz-adv-x="512" />
|
||||||
|
|
||||||
|
<glyph unicode="→" d="M241 113l130 130c4 4 6 8 6 13 0 5-2 9-6 13l-130 130c-3 3-7 5-12 5-5 0-10-2-13-5l-29-30c-4-3-6-7-6-12 0-5 2-10 6-13l87-88-87-88c-4-3-6-8-6-13 0-5 2-9 6-12l29-30c3-3 8-5 13-5 5 0 9 2 12 5z m234 143c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29-40 0-77 9-110 29-34 20-60 46-80 80-20 33-29 70-29 110 0 40 9 77 29 110 20 34 46 60 80 80 33 20 70 29 110 29 40 0 77-9 110-29 34-20 60-46 80-80 20-33 29-70 29-110z"/>
|
||||||
|
<glyph unicode="←" d="M296 113l29 30c4 3 6 7 6 12 0 5-2 10-6 13l-87 88 87 88c4 3 6 8 6 13 0 5-2 9-6 12l-29 30c-3 3-8 5-13 5-5 0-9-2-12-5l-130-130c-4-4-6-8-6-13 0-5 2-9 6-13l130-130c3-3 7-5 12-5 5 0 10 2 13 5z m179 143c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29-40 0-77 9-110 29-34 20-60 46-80 80-20 33-29 70-29 110 0 40 9 77 29 110 20 34 46 60 80 80 33 20 70 29 110 29 40 0 77-9 110-29 34-20 60-46 80-80 20-33 29-70 29-110z"/>
|
||||||
|
<glyph unicode="•" d="M475 256c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29-40 0-77 9-110 29-34 20-60 46-80 80-20 33-29 70-29 110 0 40 9 77 29 110 20 34 46 60 80 80 33 20 70 29 110 29 40 0 77-9 110-29 34-20 60-46 80-80 20-33 29-70 29-110z"/>
|
||||||
|
<glyph unicode="a" d="M475 439l0-128c0-5-1-9-5-13-4-4-8-5-13-5l-128 0c-8 0-13 3-17 11-3 7-2 14 4 20l40 39c-28 26-62 39-100 39-20 0-39-4-57-11-18-8-33-18-46-32-14-13-24-28-32-46-7-18-11-37-11-57 0-20 4-39 11-57 8-18 18-33 32-46 13-14 28-24 46-32 18-7 37-11 57-11 23 0 44 5 64 15 20 9 38 23 51 42 2 1 4 3 7 3 3 0 5-1 7-3l39-39c2-2 3-3 3-6 0-2-1-4-2-6-21-25-46-45-76-59-29-14-60-20-93-20-30 0-58 5-85 17-27 12-51 27-70 47-20 19-35 43-47 70-12 27-17 55-17 85 0 30 5 58 17 85 12 27 27 51 47 70 19 20 43 35 70 47 27 12 55 17 85 17 28 0 55-5 81-15 26-11 50-26 70-45l37 37c6 6 12 7 20 4 8-4 11-9 11-17z"/>
|
||||||
|
</font></defs></svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
BIN
slick-1.8.1/slick/fonts/slick.ttf
Normal file
BIN
slick-1.8.1/slick/fonts/slick.ttf
Normal file
Binary file not shown.
BIN
slick-1.8.1/slick/fonts/slick.woff
Normal file
BIN
slick-1.8.1/slick/fonts/slick.woff
Normal file
Binary file not shown.
150
slick-1.8.1/slick/slick-theme.css
Normal file
150
slick-1.8.1/slick/slick-theme.css
Normal file
@@ -0,0 +1,150 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
/* Slider */
|
||||||
|
.slick-loading .slick-list {
|
||||||
|
background: #fff url("./ajax-loader.gif") center center no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Icons */
|
||||||
|
@font-face {
|
||||||
|
font-family: "slick";
|
||||||
|
src: url("./fonts/slick.eot");
|
||||||
|
src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
/* Arrows */
|
||||||
|
.slick-prev,
|
||||||
|
.slick-next {
|
||||||
|
position: absolute;
|
||||||
|
display: block;
|
||||||
|
height: 20px;
|
||||||
|
width: 20px;
|
||||||
|
line-height: 0px;
|
||||||
|
font-size: 0px;
|
||||||
|
cursor: pointer;
|
||||||
|
background: transparent;
|
||||||
|
color: transparent;
|
||||||
|
top: 50%;
|
||||||
|
transform: translate(0, -50%);
|
||||||
|
padding: 0;
|
||||||
|
border: none;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
.slick-prev:hover, .slick-prev:focus,
|
||||||
|
.slick-next:hover,
|
||||||
|
.slick-next:focus {
|
||||||
|
outline: none;
|
||||||
|
background: transparent;
|
||||||
|
color: transparent;
|
||||||
|
}
|
||||||
|
.slick-prev:hover:before, .slick-prev:focus:before,
|
||||||
|
.slick-next:hover:before,
|
||||||
|
.slick-next:focus:before {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
.slick-prev.slick-disabled:before,
|
||||||
|
.slick-next.slick-disabled:before {
|
||||||
|
opacity: 0.25;
|
||||||
|
}
|
||||||
|
.slick-prev:before,
|
||||||
|
.slick-next:before {
|
||||||
|
font-family: "slick";
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 1;
|
||||||
|
color: white;
|
||||||
|
opacity: 0.75;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-prev {
|
||||||
|
left: -25px;
|
||||||
|
}
|
||||||
|
[dir=rtl] .slick-prev {
|
||||||
|
left: auto;
|
||||||
|
right: -25px;
|
||||||
|
}
|
||||||
|
.slick-prev:before {
|
||||||
|
content: "←";
|
||||||
|
}
|
||||||
|
[dir=rtl] .slick-prev:before {
|
||||||
|
content: "→";
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-next {
|
||||||
|
right: -25px;
|
||||||
|
}
|
||||||
|
[dir=rtl] .slick-next {
|
||||||
|
left: -25px;
|
||||||
|
right: auto;
|
||||||
|
}
|
||||||
|
.slick-next:before {
|
||||||
|
content: "→";
|
||||||
|
}
|
||||||
|
[dir=rtl] .slick-next:before {
|
||||||
|
content: "←";
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dots */
|
||||||
|
.slick-dotted.slick-slider {
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-dots {
|
||||||
|
position: absolute;
|
||||||
|
bottom: -25px;
|
||||||
|
list-style: none;
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.slick-dots li {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
height: 20px;
|
||||||
|
width: 20px;
|
||||||
|
margin: 0 5px;
|
||||||
|
padding: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.slick-dots li button {
|
||||||
|
border: 0;
|
||||||
|
background: transparent;
|
||||||
|
display: block;
|
||||||
|
height: 20px;
|
||||||
|
width: 20px;
|
||||||
|
outline: none;
|
||||||
|
line-height: 0px;
|
||||||
|
font-size: 0px;
|
||||||
|
color: transparent;
|
||||||
|
padding: 5px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.slick-dots li button:hover, .slick-dots li button:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
.slick-dots li button:before {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
content: "•";
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
font-family: "slick";
|
||||||
|
font-size: 6px;
|
||||||
|
line-height: 20px;
|
||||||
|
text-align: center;
|
||||||
|
color: black;
|
||||||
|
opacity: 0.25;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
|
.slick-dots li.slick-active button:before {
|
||||||
|
color: black;
|
||||||
|
opacity: 0.75;
|
||||||
|
}/*# sourceMappingURL=slick-theme.css.map */
|
||||||
1
slick-1.8.1/slick/slick-theme.css.map
Normal file
1
slick-1.8.1/slick/slick-theme.css.map
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"version":3,"sources":["slick-theme.css","slick-theme.scss"],"names":[],"mappings":"AAAA,gBAAgB;ACyChB,WAAA;AAGI;EACI,iEAAA;ADzCR;;AC6CA,UAAA;AAEI;EACI,oBAAA;EACA,6BAAA;EACA,qMAAA;EACA,mBAAA;EACA,kBAAA;AD3CR;AC+CA,WAAA;AAEA;;EAEI,kBAAA;EACA,cAAA;EACA,YAAA;EACA,WAAA;EACA,gBAAA;EACA,cAAA;EACA,eAAA;EACA,uBAAA;EACA,kBAAA;EACA,QAAA;EAGA,6BAAA;EACA,UAAA;EACA,YAAA;EACA,aAAA;AD9CJ;AC+CI;;;EACI,aAAA;EACA,uBAAA;EACA,kBAAA;AD3CR;AC4CQ;;;EACI,UAjEa;ADyBzB;AC2CI;;EACI,aApEmB;AD4B3B;AC0CI;;EACI,oBAlFY;EAmFZ,eAAA;EACA,cAAA;EACA,YAnFY;EAoFZ,aA7EgB;EA8EhB,mCAAA;EACA,kCAAA;ADvCR;;AC2CA;EACI,WAAA;ADxCJ;ACyCI;EACI,UAAA;EACA,YAAA;ADvCR;ACyCI;EACI,YA9Fe;ADuDvB;ACwCQ;EACI,YA/FW;ADyDvB;;AC2CA;EACI,YAAA;ADxCJ;ACyCI;EACI,WAAA;EACA,WAAA;ADvCR;ACyCI;EACI,YA3Ge;ADoEvB;ACwCQ;EACI,YA9GW;ADwEvB;;AC2CA,SAAA;AAEA;EACI,mBAAA;ADzCJ;;AC4CA;EACI,kBAAA;EACA,aAAA;EACA,gBAAA;EACA,cAAA;EACA,kBAAA;EACA,UAAA;EACA,SAAA;EACA,WAAA;ADzCJ;AC0CI;EACI,kBAAA;EACA,qBAAA;EACA,YAAA;EACA,WAAA;EACA,aAAA;EACA,UAAA;EACA,eAAA;ADxCR;ACyCQ;EACI,SAAA;EACA,uBAAA;EACA,cAAA;EACA,YAAA;EACA,WAAA;EACA,aAAA;EACA,gBAAA;EACA,cAAA;EACA,kBAAA;EACA,YAAA;EACA,eAAA;ADvCZ;ACwCY;EACI,aAAA;ADtChB;ACuCgB;EACI,UApJK;AD+GzB;ACwCY;EACI,kBAAA;EACA,MAAA;EACA,OAAA;EACA,YA9JM;EA+JN,WAAA;EACA,YAAA;EACA,oBAxKI;EAyKJ,cAjKC;EAkKD,iBAAA;EACA,kBAAA;EACA,YAzKE;EA0KF,aAlKW;EAmKX,mCAAA;EACA,kCAAA;ADtChB;ACyCQ;EACI,YAhLM;EAiLN,aA3KY;ADoIxB","file":"slick-theme.css"}
|
||||||
168
slick-1.8.1/slick/slick-theme.less
Normal file
168
slick-1.8.1/slick/slick-theme.less
Normal file
@@ -0,0 +1,168 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
// Default Variables
|
||||||
|
|
||||||
|
@slick-font-path: "./fonts/";
|
||||||
|
@slick-font-family: "slick";
|
||||||
|
@slick-loader-path: "./";
|
||||||
|
@slick-arrow-color: white;
|
||||||
|
@slick-dot-color: black;
|
||||||
|
@slick-dot-color-active: @slick-dot-color;
|
||||||
|
@slick-prev-character: "←";
|
||||||
|
@slick-next-character: "→";
|
||||||
|
@slick-dot-character: "•";
|
||||||
|
@slick-dot-size: 6px;
|
||||||
|
@slick-opacity-default: 0.75;
|
||||||
|
@slick-opacity-on-hover: 1;
|
||||||
|
@slick-opacity-not-active: 0.25;
|
||||||
|
|
||||||
|
/* Slider */
|
||||||
|
.slick-loading .slick-list{
|
||||||
|
background: #fff url('@{slick-loader-path}ajax-loader.gif') center center no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Arrows */
|
||||||
|
.slick-prev,
|
||||||
|
.slick-next {
|
||||||
|
position: absolute;
|
||||||
|
display: block;
|
||||||
|
height: 20px;
|
||||||
|
width: 20px;
|
||||||
|
line-height: 0px;
|
||||||
|
font-size: 0px;
|
||||||
|
cursor: pointer;
|
||||||
|
background: transparent;
|
||||||
|
color: transparent;
|
||||||
|
top: 50%;
|
||||||
|
-webkit-transform: translate(0, -50%);
|
||||||
|
-ms-transform: translate(0, -50%);
|
||||||
|
transform: translate(0, -50%);
|
||||||
|
padding: 0;
|
||||||
|
border: none;
|
||||||
|
outline: none;
|
||||||
|
&:hover, &:focus {
|
||||||
|
outline: none;
|
||||||
|
background: transparent;
|
||||||
|
color: transparent;
|
||||||
|
&:before {
|
||||||
|
opacity: @slick-opacity-on-hover;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&.slick-disabled:before {
|
||||||
|
opacity: @slick-opacity-not-active;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-prev:before, .slick-next:before {
|
||||||
|
font-family: @slick-font-family;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 1;
|
||||||
|
color: @slick-arrow-color;
|
||||||
|
opacity: @slick-opacity-default;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
|
||||||
|
& when ( @slick-font-family = 'slick' ) {
|
||||||
|
/* Icons */
|
||||||
|
@font-face {
|
||||||
|
font-family: 'slick';
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
src: url('@{slick-font-path}slick.eot');
|
||||||
|
src: url('@{slick-font-path}slick.eot?#iefix') format('embedded-opentype'), url('@{slick-font-path}slick.woff') format('woff'), url('@{slick-font-path}slick.ttf') format('truetype'), url('@{slick-font-path}slick.svg#slick') format('svg');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-prev {
|
||||||
|
left: -25px;
|
||||||
|
[dir="rtl"] & {
|
||||||
|
left: auto;
|
||||||
|
right: -25px;
|
||||||
|
}
|
||||||
|
&:before {
|
||||||
|
content: @slick-prev-character;
|
||||||
|
[dir="rtl"] & {
|
||||||
|
content: @slick-next-character;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-next {
|
||||||
|
right: -25px;
|
||||||
|
[dir="rtl"] & {
|
||||||
|
left: -25px;
|
||||||
|
right: auto;
|
||||||
|
}
|
||||||
|
&:before {
|
||||||
|
content: @slick-next-character;
|
||||||
|
[dir="rtl"] & {
|
||||||
|
content: @slick-prev-character;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dots */
|
||||||
|
|
||||||
|
.slick-dotted .slick-slider {
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-dots {
|
||||||
|
position: absolute;
|
||||||
|
bottom: -25px;
|
||||||
|
list-style: none;
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
width: 100%;
|
||||||
|
li {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
height: 20px;
|
||||||
|
width: 20px;
|
||||||
|
margin: 0 5px;
|
||||||
|
padding: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
button {
|
||||||
|
border: 0;
|
||||||
|
background: transparent;
|
||||||
|
display: block;
|
||||||
|
height: 20px;
|
||||||
|
width: 20px;
|
||||||
|
outline: none;
|
||||||
|
line-height: 0px;
|
||||||
|
font-size: 0px;
|
||||||
|
color: transparent;
|
||||||
|
padding: 5px;
|
||||||
|
cursor: pointer;
|
||||||
|
&:hover, &:focus {
|
||||||
|
outline: none;
|
||||||
|
&:before {
|
||||||
|
opacity: @slick-opacity-on-hover;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&:before {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
content: @slick-dot-character;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
font-family: @slick-font-family;
|
||||||
|
font-size: @slick-dot-size;
|
||||||
|
line-height: 20px;
|
||||||
|
text-align: center;
|
||||||
|
color: @slick-dot-color;
|
||||||
|
opacity: @slick-opacity-not-active;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&.slick-active button:before {
|
||||||
|
color: @slick-dot-color-active;
|
||||||
|
opacity: @slick-opacity-default;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
194
slick-1.8.1/slick/slick-theme.scss
Normal file
194
slick-1.8.1/slick/slick-theme.scss
Normal file
@@ -0,0 +1,194 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
// Default Variables
|
||||||
|
|
||||||
|
// Slick icon entity codes outputs the following
|
||||||
|
// "\2190" outputs ascii character "←"
|
||||||
|
// "\2192" outputs ascii character "→"
|
||||||
|
// "\2022" outputs ascii character "•"
|
||||||
|
|
||||||
|
$slick-font-path: "./fonts/" !default;
|
||||||
|
$slick-font-family: "slick" !default;
|
||||||
|
$slick-loader-path: "./" !default;
|
||||||
|
$slick-arrow-color: white !default;
|
||||||
|
$slick-dot-color: black !default;
|
||||||
|
$slick-dot-color-active: $slick-dot-color !default;
|
||||||
|
$slick-prev-character: "\2190" !default;
|
||||||
|
$slick-next-character: "\2192" !default;
|
||||||
|
$slick-dot-character: "\2022" !default;
|
||||||
|
$slick-dot-size: 6px !default;
|
||||||
|
$slick-opacity-default: 0.75 !default;
|
||||||
|
$slick-opacity-on-hover: 1 !default;
|
||||||
|
$slick-opacity-not-active: 0.25 !default;
|
||||||
|
|
||||||
|
@function slick-image-url($url) {
|
||||||
|
@if function-exists(image-url) {
|
||||||
|
@return image-url($url);
|
||||||
|
}
|
||||||
|
@else {
|
||||||
|
@return url($slick-loader-path + $url);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@function slick-font-url($url) {
|
||||||
|
@if function-exists(font-url) {
|
||||||
|
@return font-url($url);
|
||||||
|
}
|
||||||
|
@else {
|
||||||
|
@return url($slick-font-path + $url);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Slider */
|
||||||
|
|
||||||
|
.slick-list {
|
||||||
|
.slick-loading & {
|
||||||
|
background: #fff slick-image-url("ajax-loader.gif") center center no-repeat;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Icons */
|
||||||
|
@if $slick-font-family == "slick" {
|
||||||
|
@font-face {
|
||||||
|
font-family: "slick";
|
||||||
|
src: slick-font-url("slick.eot");
|
||||||
|
src: slick-font-url("slick.eot?#iefix") format("embedded-opentype"), slick-font-url("slick.woff") format("woff"), slick-font-url("slick.ttf") format("truetype"), slick-font-url("slick.svg#slick") format("svg");
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Arrows */
|
||||||
|
|
||||||
|
.slick-prev,
|
||||||
|
.slick-next {
|
||||||
|
position: absolute;
|
||||||
|
display: block;
|
||||||
|
height: 20px;
|
||||||
|
width: 20px;
|
||||||
|
line-height: 0px;
|
||||||
|
font-size: 0px;
|
||||||
|
cursor: pointer;
|
||||||
|
background: transparent;
|
||||||
|
color: transparent;
|
||||||
|
top: 50%;
|
||||||
|
-webkit-transform: translate(0, -50%);
|
||||||
|
-ms-transform: translate(0, -50%);
|
||||||
|
transform: translate(0, -50%);
|
||||||
|
padding: 0;
|
||||||
|
border: none;
|
||||||
|
outline: none;
|
||||||
|
&:hover, &:focus {
|
||||||
|
outline: none;
|
||||||
|
background: transparent;
|
||||||
|
color: transparent;
|
||||||
|
&:before {
|
||||||
|
opacity: $slick-opacity-on-hover;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&.slick-disabled:before {
|
||||||
|
opacity: $slick-opacity-not-active;
|
||||||
|
}
|
||||||
|
&:before {
|
||||||
|
font-family: $slick-font-family;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 1;
|
||||||
|
color: $slick-arrow-color;
|
||||||
|
opacity: $slick-opacity-default;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-prev {
|
||||||
|
left: -25px;
|
||||||
|
[dir="rtl"] & {
|
||||||
|
left: auto;
|
||||||
|
right: -25px;
|
||||||
|
}
|
||||||
|
&:before {
|
||||||
|
content: $slick-prev-character;
|
||||||
|
[dir="rtl"] & {
|
||||||
|
content: $slick-next-character;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-next {
|
||||||
|
right: -25px;
|
||||||
|
[dir="rtl"] & {
|
||||||
|
left: -25px;
|
||||||
|
right: auto;
|
||||||
|
}
|
||||||
|
&:before {
|
||||||
|
content: $slick-next-character;
|
||||||
|
[dir="rtl"] & {
|
||||||
|
content: $slick-prev-character;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dots */
|
||||||
|
|
||||||
|
.slick-dotted.slick-slider {
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-dots {
|
||||||
|
position: absolute;
|
||||||
|
bottom: -25px;
|
||||||
|
list-style: none;
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
width: 100%;
|
||||||
|
li {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
height: 20px;
|
||||||
|
width: 20px;
|
||||||
|
margin: 0 5px;
|
||||||
|
padding: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
button {
|
||||||
|
border: 0;
|
||||||
|
background: transparent;
|
||||||
|
display: block;
|
||||||
|
height: 20px;
|
||||||
|
width: 20px;
|
||||||
|
outline: none;
|
||||||
|
line-height: 0px;
|
||||||
|
font-size: 0px;
|
||||||
|
color: transparent;
|
||||||
|
padding: 5px;
|
||||||
|
cursor: pointer;
|
||||||
|
&:hover, &:focus {
|
||||||
|
outline: none;
|
||||||
|
&:before {
|
||||||
|
opacity: $slick-opacity-on-hover;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&:before {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
content: $slick-dot-character;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
font-family: $slick-font-family;
|
||||||
|
font-size: $slick-dot-size;
|
||||||
|
line-height: 20px;
|
||||||
|
text-align: center;
|
||||||
|
color: $slick-dot-color;
|
||||||
|
opacity: $slick-opacity-not-active;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&.slick-active button:before {
|
||||||
|
color: $slick-dot-color-active;
|
||||||
|
opacity: $slick-opacity-default;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
85
slick-1.8.1/slick/slick.css
Normal file
85
slick-1.8.1/slick/slick.css
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
/* Slider */
|
||||||
|
.slick-slider {
|
||||||
|
position: relative;
|
||||||
|
display: block;
|
||||||
|
box-sizing: border-box;
|
||||||
|
-webkit-touch-callout: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
touch-action: pan-y;
|
||||||
|
-webkit-tap-highlight-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-list {
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
display: block;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.slick-list:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
.slick-list.dragging {
|
||||||
|
cursor: pointer;
|
||||||
|
cursor: hand;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-slider .slick-track,
|
||||||
|
.slick-slider .slick-list {
|
||||||
|
transform: translate3d(0, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-track {
|
||||||
|
position: relative;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
display: block;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
.slick-track:before, .slick-track:after {
|
||||||
|
content: "";
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
|
.slick-track:after {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
.slick-loading .slick-track {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-slide {
|
||||||
|
float: left;
|
||||||
|
height: 100%;
|
||||||
|
min-height: 1px;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
[dir=rtl] .slick-slide {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
.slick-slide img {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.slick-slide.slick-loading img {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.slick-slide.dragging img {
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
.slick-initialized .slick-slide {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.slick-loading .slick-slide {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
.slick-vertical .slick-slide {
|
||||||
|
display: block;
|
||||||
|
height: auto;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-arrow.slick-hidden {
|
||||||
|
display: none;
|
||||||
|
}/*# sourceMappingURL=slick.css.map */
|
||||||
1
slick-1.8.1/slick/slick.css.map
Normal file
1
slick-1.8.1/slick/slick.css.map
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"version":3,"sources":["slick.scss","slick.css"],"names":[],"mappings":"AAAA,WAAA;AAEA;EACI,kBAAA;EACA,cAAA;EACA,sBAAA;EACA,2BAAA;EACA,yBAAA;EAEA,sBAAA;EAEA,iBAAA;EAEA,mBAAA;EACA,wCAAA;ACAJ;;ADEA;EACI,kBAAA;EACA,gBAAA;EACA,cAAA;EACA,SAAA;EACA,UAAA;ACCJ;ADCI;EACI,aAAA;ACCR;ADEI;EACI,eAAA;EACA,YAAA;ACAR;;ADGA;;EAMI,+BAAA;ACAJ;;ADGA;EACI,kBAAA;EACA,OAAA;EACA,MAAA;EACA,cAAA;EACA,iBAAA;EACA,kBAAA;ACAJ;ADEI;EAEI,WAAA;EACA,cAAA;ACDR;ADII;EACI,WAAA;ACFR;ADKI;EACI,kBAAA;ACHR;;ADMA;EACI,WAAA;EACA,YAAA;EACA,eAAA;EAWA,aAAA;ACbJ;ADGI;EACI,YAAA;ACDR;ADGI;EACI,cAAA;ACDR;ADGI;EACI,aAAA;ACDR;ADMI;EACI,oBAAA;ACJR;ADOI;EACI,cAAA;ACLR;ADQI;EACI,kBAAA;ACNR;ADSI;EACI,cAAA;EACA,YAAA;EACA,6BAAA;ACPR;;ADUA;EACI,aAAA;ACPJ","file":"slick.css"}
|
||||||
3011
slick-1.8.1/slick/slick.js
Normal file
3011
slick-1.8.1/slick/slick.js
Normal file
File diff suppressed because it is too large
Load Diff
100
slick-1.8.1/slick/slick.less
Normal file
100
slick-1.8.1/slick/slick.less
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
/* Slider */
|
||||||
|
|
||||||
|
.slick-slider {
|
||||||
|
position: relative;
|
||||||
|
display: block;
|
||||||
|
box-sizing: border-box;
|
||||||
|
-webkit-touch-callout: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-khtml-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
-ms-touch-action: pan-y;
|
||||||
|
touch-action: pan-y;
|
||||||
|
-webkit-tap-highlight-color: transparent;
|
||||||
|
}
|
||||||
|
.slick-list {
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
display: block;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.dragging {
|
||||||
|
cursor: pointer;
|
||||||
|
cursor: hand;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.slick-slider .slick-track,
|
||||||
|
.slick-slider .slick-list {
|
||||||
|
-webkit-transform: translate3d(0, 0, 0);
|
||||||
|
-moz-transform: translate3d(0, 0, 0);
|
||||||
|
-ms-transform: translate3d(0, 0, 0);
|
||||||
|
-o-transform: translate3d(0, 0, 0);
|
||||||
|
transform: translate3d(0, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-track {
|
||||||
|
position: relative;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
display: block;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
|
||||||
|
&:before,
|
||||||
|
&:after {
|
||||||
|
content: "";
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-loading & {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.slick-slide {
|
||||||
|
float: left;
|
||||||
|
height: 100%;
|
||||||
|
min-height: 1px;
|
||||||
|
[dir="rtl"] & {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
img {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
&.slick-loading img {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
display: none;
|
||||||
|
|
||||||
|
&.dragging img {
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-initialized & {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-loading & {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-vertical & {
|
||||||
|
display: block;
|
||||||
|
height: auto;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.slick-arrow.slick-hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
1
slick-1.8.1/slick/slick.min.js
vendored
Normal file
1
slick-1.8.1/slick/slick.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
100
slick-1.8.1/slick/slick.scss
Normal file
100
slick-1.8.1/slick/slick.scss
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
/* Slider */
|
||||||
|
|
||||||
|
.slick-slider {
|
||||||
|
position: relative;
|
||||||
|
display: block;
|
||||||
|
box-sizing: border-box;
|
||||||
|
-webkit-touch-callout: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-khtml-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
-ms-touch-action: pan-y;
|
||||||
|
touch-action: pan-y;
|
||||||
|
-webkit-tap-highlight-color: transparent;
|
||||||
|
}
|
||||||
|
.slick-list {
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
display: block;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.dragging {
|
||||||
|
cursor: pointer;
|
||||||
|
cursor: hand;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.slick-slider .slick-track,
|
||||||
|
.slick-slider .slick-list {
|
||||||
|
-webkit-transform: translate3d(0, 0, 0);
|
||||||
|
-moz-transform: translate3d(0, 0, 0);
|
||||||
|
-ms-transform: translate3d(0, 0, 0);
|
||||||
|
-o-transform: translate3d(0, 0, 0);
|
||||||
|
transform: translate3d(0, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-track {
|
||||||
|
position: relative;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
display: block;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
|
||||||
|
&:before,
|
||||||
|
&:after {
|
||||||
|
content: "";
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-loading & {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.slick-slide {
|
||||||
|
float: left;
|
||||||
|
height: 100%;
|
||||||
|
min-height: 1px;
|
||||||
|
[dir="rtl"] & {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
img {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
&.slick-loading img {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
display: none;
|
||||||
|
|
||||||
|
&.dragging img {
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-initialized & {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-loading & {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-vertical & {
|
||||||
|
display: block;
|
||||||
|
height: auto;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.slick-arrow.slick-hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
@@ -2,13 +2,25 @@
|
|||||||
|
|
||||||
.first-part {
|
.first-part {
|
||||||
min-height: 65vh;
|
min-height: 65vh;
|
||||||
background-image: url('../assets/images/image36.jpg');
|
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
color: white;
|
color: white;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.slick-carousel{
|
||||||
|
min-height: 65vh !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
// #first-part-home{
|
||||||
|
// min-height: 65vh ;
|
||||||
|
// background-image: url('../assets/images/image36.jpg');
|
||||||
|
// background-size: cover;
|
||||||
|
// color: white;
|
||||||
|
// background-position: center;
|
||||||
|
// }
|
||||||
|
|
||||||
.textbox {
|
.textbox {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
@@ -54,8 +66,14 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 768px){
|
@media only screen and (min-width: 768px){
|
||||||
|
|
||||||
.first-part {
|
.first-part {
|
||||||
min-height: 53vh;
|
min-height: 53vh;
|
||||||
|
.textbox{
|
||||||
|
button{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
.h2-first {
|
.h2-first {
|
||||||
@@ -67,12 +85,14 @@
|
|||||||
|
|
||||||
|
|
||||||
@media only screen and (min-width: 992px) {
|
@media only screen and (min-width: 992px) {
|
||||||
|
|
||||||
.first-part {
|
.first-part {
|
||||||
min-height: 78vh;
|
min-height: 78vh ;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
||||||
.textbox{
|
.textbox{
|
||||||
|
|
||||||
p{
|
p{
|
||||||
margin-left: 400px;
|
margin-left: 400px;
|
||||||
margin-right: 400px;
|
margin-right: 400px;
|
||||||
|
|||||||
@@ -1,6 +1,28 @@
|
|||||||
footer{
|
footer{
|
||||||
background-color: #31353d;
|
background-color: #31353d;
|
||||||
|
|
||||||
|
.scrollToTopBtn{
|
||||||
|
|
||||||
|
button{
|
||||||
|
display: none;
|
||||||
|
position: fixed;
|
||||||
|
bottom: 70px;
|
||||||
|
right: 20px;
|
||||||
|
z-index: 99;
|
||||||
|
background-color: #15c1c6;
|
||||||
|
padding: 18px;
|
||||||
|
border-radius: 50%;
|
||||||
|
font-size: 23px;
|
||||||
|
color: white;
|
||||||
|
background-color: #15c1c6;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:hover{
|
||||||
|
background-color: #31353d;
|
||||||
|
transition: 0.3s;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.footer-copyright{
|
.footer-copyright{
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
|
|||||||
152
style/_nav.scss
152
style/_nav.scss
@@ -1,12 +1,12 @@
|
|||||||
@import '_variables';
|
@import '_variables';
|
||||||
|
|
||||||
|
|
||||||
.form-search{
|
.form-search {
|
||||||
width: 380px;
|
width: 380px;
|
||||||
height: 40px ;
|
height: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.socials-ul{
|
.socials-ul {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ nav {
|
|||||||
|
|
||||||
.navbar {
|
.navbar {
|
||||||
padding: 0 !important;
|
padding: 0 !important;
|
||||||
height: 40px ;
|
height: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-container {
|
.form-container {
|
||||||
@@ -29,7 +29,6 @@ nav {
|
|||||||
|
|
||||||
|
|
||||||
.btn span {
|
.btn span {
|
||||||
padding-top: 10px;
|
|
||||||
color: $lightblue;
|
color: $lightblue;
|
||||||
width: 30px;
|
width: 30px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
@@ -59,7 +58,7 @@ input::placeholder {
|
|||||||
color: white !important;
|
color: white !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.phone{
|
.phone {
|
||||||
color: #333333;
|
color: #333333;
|
||||||
font-family: $numberfont;
|
font-family: $numberfont;
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
@@ -70,13 +69,14 @@ input::placeholder {
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.phone:hover{
|
.phone:hover {
|
||||||
color: $lightblue;
|
color: $lightblue;
|
||||||
transition: 0.5s;
|
transition: 0.5s;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
||||||
}
|
}
|
||||||
#phone-img{
|
|
||||||
|
#phone-img {
|
||||||
width: 22px;
|
width: 22px;
|
||||||
height: 33px;
|
height: 33px;
|
||||||
}
|
}
|
||||||
@@ -95,15 +95,16 @@ input::placeholder {
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo-img{
|
.logo-img {
|
||||||
cursor:pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dropdown{
|
.dropdown {
|
||||||
|
|
||||||
top: 22%;
|
top: 22%;
|
||||||
right: 10px;
|
right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
// .register{
|
// .register{
|
||||||
// .register-link{
|
// .register-link{
|
||||||
// color: #15c1c6;
|
// color: #15c1c6;
|
||||||
@@ -118,32 +119,36 @@ input::placeholder {
|
|||||||
// }
|
// }
|
||||||
|
|
||||||
@media only screen and (min-width: 768px) {
|
@media only screen and (min-width: 768px) {
|
||||||
.dropdown{
|
.dropdown {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 7px;
|
top: 7px;
|
||||||
left: 20px;
|
left: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-search{
|
.form-search {
|
||||||
width: 229px !important;
|
width: 229px !important;
|
||||||
background-color: #4a4e55;
|
background-color: #4a4e55;
|
||||||
padding-left: 34px;
|
padding-left: 34px;
|
||||||
padding-right: 15px;
|
padding-right: 15px;
|
||||||
|
|
||||||
}
|
}
|
||||||
.form-container{
|
|
||||||
|
.form-container {
|
||||||
padding-left: 0 !important;
|
padding-left: 0 !important;
|
||||||
padding-right: 15px !important;
|
padding-right: 15px !important;
|
||||||
}
|
}
|
||||||
.navbar{
|
|
||||||
|
.navbar {
|
||||||
background-color: #30343c;
|
background-color: #30343c;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#src-input {
|
#src-input {
|
||||||
padding-left: 0px;
|
padding-left: 0px;
|
||||||
}
|
}
|
||||||
#socials{
|
|
||||||
|
#socials {
|
||||||
height: 28px !important;
|
height: 28px !important;
|
||||||
width: 28px !important;
|
width: 28px !important;
|
||||||
margin-top: 0 !important;
|
margin-top: 0 !important;
|
||||||
@@ -153,12 +158,13 @@ input::placeholder {
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
||||||
}
|
}
|
||||||
.horizontal-menu{
|
|
||||||
|
.horizontal-menu {
|
||||||
border-top: 1px solid #efefef;
|
border-top: 1px solid #efefef;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-ul-hor{
|
.nav-ul-hor {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: #333333;
|
color: #333333;
|
||||||
@@ -170,15 +176,9 @@ input::placeholder {
|
|||||||
padding-left: 16px !important;
|
padding-left: 16px !important;
|
||||||
|
|
||||||
|
|
||||||
.navs{
|
.navs {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
color: #333333 ;
|
color: #333333;
|
||||||
// .hor-navs-a{
|
|
||||||
// color: #333333;
|
|
||||||
// }
|
|
||||||
// .hor-navs-a:hover{
|
|
||||||
// color:white !important;
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.navs:hover {
|
.navs:hover {
|
||||||
@@ -192,35 +192,119 @@ input::placeholder {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 992px) {
|
@media only screen and (min-width: 992px) {
|
||||||
.dropdown{
|
.dropdown {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 5%;
|
left: 5%;
|
||||||
top: 10px;
|
top: 10px;
|
||||||
}
|
}
|
||||||
.navbar{
|
|
||||||
|
.navbar {
|
||||||
height: 60px;
|
height: 60px;
|
||||||
}
|
}
|
||||||
.form-search{
|
|
||||||
|
.form-search {
|
||||||
margin-left: 55px;
|
margin-left: 55px;
|
||||||
margin-right: 72px;
|
margin-right: 72px;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
|
||||||
}
|
}
|
||||||
.horizontal-menu{
|
|
||||||
|
.horizontal-menu {
|
||||||
border-top: none !important;
|
border-top: none !important;
|
||||||
|
|
||||||
|
.dropdown-ul-2 {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
#li-home:hover .dropdown-ul-2 {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
left: 26%;
|
||||||
|
top: 18%;
|
||||||
|
z-index: 99;
|
||||||
|
font-size: .875rem;
|
||||||
|
a{
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
li{
|
||||||
|
padding: 1em 19px;
|
||||||
|
width: 15em;
|
||||||
|
background-color: #15c1c6;
|
||||||
|
list-style: none;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: white;
|
||||||
|
border-bottom: 1px solid white;
|
||||||
|
}
|
||||||
|
li:hover{
|
||||||
|
color: #30343c;
|
||||||
|
transition: 0.3s;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#li-people:hover .dropdown-ul-2 {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
left: 30%;
|
||||||
|
top: 18%;
|
||||||
|
z-index: 99;
|
||||||
|
font-size: .875rem;
|
||||||
|
a{
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
li{
|
||||||
|
padding: 1em 19px;
|
||||||
|
width: 15em;
|
||||||
|
background-color: #15c1c6;
|
||||||
|
list-style: none;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: white;
|
||||||
|
border-bottom: 1px solid white;
|
||||||
|
}
|
||||||
|
li:hover{
|
||||||
|
color: #30343c;
|
||||||
|
transition: 0.3s;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#li-about:hover .dropdown-ul-2 {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
left: 37%;
|
||||||
|
top: 18%;
|
||||||
|
z-index: 99;
|
||||||
|
font-size: .875rem;
|
||||||
|
a{
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
li{
|
||||||
|
padding: 1em 19px;
|
||||||
|
width: 15em;
|
||||||
|
background-color: #15c1c6;
|
||||||
|
list-style: none;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: white;
|
||||||
|
border-bottom: 1px solid white;
|
||||||
|
}
|
||||||
|
li:hover{
|
||||||
|
color: #30343c;
|
||||||
|
transition: 0.3s;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.navs{
|
.navs {
|
||||||
padding: 45px 22px !important;
|
padding: 45px 22px !important;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
header{
|
header {
|
||||||
padding: 0 96px !important;
|
padding: 0 96px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo-img{
|
.logo-img {
|
||||||
width: 174px;
|
width: 174px;
|
||||||
height: 39px;
|
height: 39px;
|
||||||
cursor:pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
104
style/style.css
104
style/style.css
@@ -36,7 +36,6 @@ nav {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.btn span {
|
.btn span {
|
||||||
padding-top: 10px;
|
|
||||||
color: #15c1c6;
|
color: #15c1c6;
|
||||||
width: 30px;
|
width: 30px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
@@ -179,10 +178,87 @@ input::placeholder {
|
|||||||
.form-search {
|
.form-search {
|
||||||
margin-left: 55px;
|
margin-left: 55px;
|
||||||
margin-right: 72px;
|
margin-right: 72px;
|
||||||
|
margin-bottom: 0px;
|
||||||
}
|
}
|
||||||
.horizontal-menu {
|
.horizontal-menu {
|
||||||
border-top: none !important;
|
border-top: none !important;
|
||||||
}
|
}
|
||||||
|
.horizontal-menu .dropdown-ul-2 {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
.horizontal-menu #li-home:hover .dropdown-ul-2 {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
left: 26%;
|
||||||
|
top: 18%;
|
||||||
|
z-index: 99;
|
||||||
|
font-size: 0.875rem;
|
||||||
|
}
|
||||||
|
.horizontal-menu #li-home:hover .dropdown-ul-2 a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.horizontal-menu #li-home:hover .dropdown-ul-2 li {
|
||||||
|
padding: 1em 19px;
|
||||||
|
width: 15em;
|
||||||
|
background-color: #15c1c6;
|
||||||
|
list-style: none;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: white;
|
||||||
|
border-bottom: 1px solid white;
|
||||||
|
}
|
||||||
|
.horizontal-menu #li-home:hover .dropdown-ul-2 li:hover {
|
||||||
|
color: #30343c;
|
||||||
|
transition: 0.3s;
|
||||||
|
}
|
||||||
|
.horizontal-menu #li-people:hover .dropdown-ul-2 {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
left: 30%;
|
||||||
|
top: 18%;
|
||||||
|
z-index: 99;
|
||||||
|
font-size: 0.875rem;
|
||||||
|
}
|
||||||
|
.horizontal-menu #li-people:hover .dropdown-ul-2 a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.horizontal-menu #li-people:hover .dropdown-ul-2 li {
|
||||||
|
padding: 1em 19px;
|
||||||
|
width: 15em;
|
||||||
|
background-color: #15c1c6;
|
||||||
|
list-style: none;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: white;
|
||||||
|
border-bottom: 1px solid white;
|
||||||
|
}
|
||||||
|
.horizontal-menu #li-people:hover .dropdown-ul-2 li:hover {
|
||||||
|
color: #30343c;
|
||||||
|
transition: 0.3s;
|
||||||
|
}
|
||||||
|
.horizontal-menu #li-about:hover .dropdown-ul-2 {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
left: 37%;
|
||||||
|
top: 18%;
|
||||||
|
z-index: 99;
|
||||||
|
font-size: 0.875rem;
|
||||||
|
}
|
||||||
|
.horizontal-menu #li-about:hover .dropdown-ul-2 a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.horizontal-menu #li-about:hover .dropdown-ul-2 li {
|
||||||
|
padding: 1em 19px;
|
||||||
|
width: 15em;
|
||||||
|
background-color: #15c1c6;
|
||||||
|
list-style: none;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: white;
|
||||||
|
border-bottom: 1px solid white;
|
||||||
|
}
|
||||||
|
.horizontal-menu #li-about:hover .dropdown-ul-2 li:hover {
|
||||||
|
color: #30343c;
|
||||||
|
transition: 0.3s;
|
||||||
|
}
|
||||||
.navs {
|
.navs {
|
||||||
padding: 45px 22px !important;
|
padding: 45px 22px !important;
|
||||||
}
|
}
|
||||||
@@ -325,12 +401,15 @@ span {
|
|||||||
}
|
}
|
||||||
.first-part {
|
.first-part {
|
||||||
min-height: 65vh;
|
min-height: 65vh;
|
||||||
background-image: url("../assets/images/image36.jpg");
|
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
color: white;
|
color: white;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.slick-carousel {
|
||||||
|
min-height: 65vh !important;
|
||||||
|
}
|
||||||
|
|
||||||
.textbox {
|
.textbox {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
@@ -383,6 +462,9 @@ span {
|
|||||||
.first-part {
|
.first-part {
|
||||||
min-height: 53vh;
|
min-height: 53vh;
|
||||||
}
|
}
|
||||||
|
.first-part .textbox button {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
.h2-first {
|
.h2-first {
|
||||||
font-size: 46px !important;
|
font-size: 46px !important;
|
||||||
margin-top: 30px;
|
margin-top: 30px;
|
||||||
@@ -994,6 +1076,24 @@ span {
|
|||||||
footer {
|
footer {
|
||||||
background-color: #31353d;
|
background-color: #31353d;
|
||||||
}
|
}
|
||||||
|
footer .scrollToTopBtn button {
|
||||||
|
display: none;
|
||||||
|
position: fixed;
|
||||||
|
bottom: 70px;
|
||||||
|
right: 20px;
|
||||||
|
z-index: 99;
|
||||||
|
background-color: #15c1c6;
|
||||||
|
padding: 18px;
|
||||||
|
border-radius: 50%;
|
||||||
|
font-size: 23px;
|
||||||
|
color: white;
|
||||||
|
background-color: #15c1c6;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
footer .scrollToTopBtn button:hover {
|
||||||
|
background-color: #31353d;
|
||||||
|
transition: 0.3s;
|
||||||
|
}
|
||||||
footer .footer-copyright {
|
footer .footer-copyright {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
font-size: 0.875rem;
|
font-size: 0.875rem;
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user