Skip to content

Instantly share code, notes, and snippets.

View kythuatwebso's full-sized avatar

Kỹ thuật WEBSO kythuatwebso

View GitHub Profile
@kythuatwebso
kythuatwebso / gist:17aa1a65be749c94ce147ae5ecd77620
Last active August 26, 2022 09:16 — forked from urre/gist:30523173fb22e3a375fa
Slick.js slider with thumbnails
$('.specs__slider').slick({
dots: true,
centerMode: true,
focusOnSelect: true,
arrows: false,
customPaging: function(slider, i) {
return '<div class="thumbnails">' +$(slider.$slides[i]).find('img').prop('outerHTML')+ '</div>';
}
});
@kythuatwebso
kythuatwebso / render-time.php
Created October 1, 2021 10:31 — forked from EfremovMS/render-time.php
PHP render time
<?php
$start = microtime(true);
// /////////////////// //
// CODE //
// /////////////////// //
$end = microtime(true) - $start;
dump("Rendered for [ {$end}s ]");
?>