server {
listen 80;
server_name *.example.com;
return 301 https://$host$request_uri;
}
$posts = Post::with('buildings');
$posts->where('1', '=', '2');
$posts->where('3', '=', '4');
$posts->orderBy('id', 'desc');
router.beforeEach((to, from, next) => {
const currentUser = localStorage.getItem("auth");
if (currentUser && to.path !== '/panel' ) {
next("panel");
} else {
next();
}
});
button:active, button:focus {
outline: none;
}
button::-moz-focus-inner {
border: 0;
}
<body>
<section class="video-block">
<div class="information">
<select id="select">
<option disabled selected>Выберите язык</option>
<option>Английский язык</option>
</select>
<a data-text="Video information:">Информация о видео:</a>
<a data-text="Title: All For The Sake Of Hype">Название: Всё Ради Хайпа</a>
<a data-text="№1 in YouTube trends">№1 в трендах YouTube</a>
<a data-text="Number of views: 1.5 million">Количество просмотров: 1.5млн</a>
<a data-text="Number of likes: 10 chiliad">Количество лайков: 10тыч</a>
</div>
<figure>
<video id="mesto" class="vidos nety" controls="controls" copreload="auto" autoplay="true" loop="true" muted="muted">
<source src="src/video.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
</video>
</figure>
</section>
<section class="button-block">
<div id="button" class="button">
<a id="buttonText" data-text="Watch video" href="#">Смотреть видео</a>
</div>
</section>
<script src="js/script.js"></script>
</body>
window.onload = function() {
let a = document.getElementById('button');
let vidos = document.getElementById('mesto');
let b = document.getElementById('select').options.selectedIndex;
let texts = document.querySelectorAll('[data-text]');
let textButton = document.getElementById('buttonText');
let video = function() {
vidos.classList.remove("nety");
if (b == 0) {
texts.forEach(el => el.textContent = el.dataset.text);
textButton.textContent = textButton.dataset.text;
};
};
a.onclick = video;
}