This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ru"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Как вставить двадцать видео с Ютуба: стало</title> | |
<link rel="stylesheet" href="page.css"> | |
<link rel="stylesheet" href="video.css"> | |
</head> | |
<body class="page"> | |
<div class="video"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Expanded block (read more/less) | |
var expandedBlock = $('[data-attr="expanded"]'); | |
if (expandedBlock) { | |
var ellipsestext = "..."; | |
var moretext = "Read More"; | |
var lesstext = "Read Less"; | |
// Will Shorten Text and Add Addtional HTML Tags | |
$(expandedBlock).each(function () { | |
var showChar = $(this).data("char-count"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ru"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Чекбокс совместимый</title> | |
<style> | |
body { | |
margin: 0; | |
padding: 25px; | |
font-family: sans-serif; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* The Modal (background) */ | |
.modal { | |
display: none; | |
position: fixed; | |
z-index: 1; | |
padding-top: 100px; | |
left: 0; | |
top: 0; | |
width: 100%; | |
height: 100%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="js-youtube-video" data-src="https://www.youtube.com/embed/CSehGrk48TQ"> | |
<div class="icon-play"></div><img src="img/youtube-img.png" alt="youtube-video"> | |
<div class="overlay"></div> | |
</div> | |
<script> | |
/** | |
* youtube mask and play | |
*/ | |
$('.js-youtube-video').click(function () { | |
var $t = $(this); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.preloader img { | |
max-width: 100%; | |
max-height: 100%; | |
} | |
.main-cat_banner { | |
position: relative; | |
} | |
.main-cat_banner .preloader { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.reviews').hide(); | |
$('.reviews').on('init', function(event, slick){ | |
$(this).show(); | |
}); | |
//**************??????? ??? ??????***************************** | |
$('.reviews').slick({ | |
slidesToShow: 1, | |
slidesToScroll: 1, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
/*Styling Selectbox*/ | |
.dropdown { | |
width: 300px; | |
display: inline-block; | |
background-color: #fff; | |
border-radius: 5px; | |
box-shadow: 0 0 2px rgb(204, 204, 204); | |
transition: all .5s ease; | |
position: relative; |
NewerOlder