html, body {
position: absolute;
background-color: #ffffff!important;
color: #000;
font-family: Verdana, sans-serif;
font-weight: normal;
font-size: 12px!important;
line-height: 1.1;
width: 100%;
height: 100%;
-webkit-font-smoothing: subpixel-antialiased;
-moz-osx-font-smoothing: auto;
margin: 0;
min-width: 1000px;
min-height: 600px;
}
с css в php файл где и находится сам скрипт с ползунком. document.querySelector('input').addEventListener('input', function() {
document.body.style.filter = `brightness(${this.value}%)`;
});
html, body {}
<nav class="clearfix">
<ul class="clearfix">
<li><a href="/prot.html" target="buy">Протеин</a></li>
<li><a href="/bcaa.html" target="buy">BCAA</a></li>
<li><a href="/gainer.html" target="buy">Гейнеры</a></li>
<li><a href="/carnit.html" target="buy">L-Carnitine</a></li>
<li><a href="/omega3.html" target="buy">Omega 3</a></li>
<li><a href="/testobust.html" target="buy">Тесто-бустеры</a></li>
<li><a href="/shakers.html" target="buy">Шейкеры</a> </li>
<li><a href="/sust.html" target="buy">Суставы</a></li>
<li><a href="/creat.html" target="buy">Креатин</a></li>
<li><a href="/jir.html" target="buy">Жиросжигатели</a></li>
<li><a href="/prework.html" target="buy">Предтрены</a></li>
<li><a href="/vitam.html" target="buy">Витамины</a></li>
<li><a href="/ingib.html" target="buy">Ингибиторы</a></li>
<li><a href="/vkusniahi.html" target="buy">Вкусняхи</a></li>
</ul>
<a href="#" id="pull">Menu</a>
</nav>
$(function() {
var pull = $('#pull');
menu = $('nav ul');
menuHeight = menu.height();
$(pull).on('click', function(e) {
e.preventDefault();
menu.slideToggle();
});
});
$(window).resize(function(){
var w = $(window).width();
if(w > 320 && menu.is(':hidden')) {
menu.removeAttr('style');
}
});
body {
background-color: #ece8e5;
}
nav {
width: 100%;
/* background: rgba(165, 24, 24, .6); */
font-size: 11px;
font-family: 'PT Sans', Arial, sans-serif;
font-weight: bold;
position: relative;
/* border-bottom: 1px solid #e64949; */
/* text-align: center; */
/* height: 80px; */
}
nav ul {
padding: 0;
margin: 0 auto;
width: 100%;
height: 40px;
text-align: center;
}
nav li {
display: inline-grid;
margin-bottom: 3px;
/* margin-top: unset; */
border: 1px solid #da2c2c;
}
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.clearfix {
zoom: 1;
}
nav a {
color: #fff;
display: inline-block;
width: 100px;
text-align: center;
text-decoration: none;
line-height: 40px;
text-shadow: 1px 1px 0px #283744;
}
nav li a {
background: rgba(165, 24, 24, .6); */
/* border: 1px solid #e64949; */
/* border-right: 1px solid #e64949; */
box-sizing:border-box;
-moz-box-sizing:border-box;
-webkit-box-sizing:border-box;
}
nav li:last-child a {
/* border-right: 0; */
}
nav a:hover, nav a:active {
background-color: #a51818;
}
nav a#pull {
display: none;
}
@media screen and (max-width: 481px) {
nav {
height: auto;
}
nav ul {
width: 100%;
display: block;
height: auto;
text-align: center;
}
nav li {
width: 100%;
/* float: left; */
position: relative;
text-align: center;
}
nav li a {
/* border-bottom: 1px solid #e64949; */
/* border-right: 1px solid #e64949; */
}
nav a {
/* text-align: left; */
width: 100%;
/* text-indent: 25px; */
}
}
@media only screen and (max-width: 1468px) {
nav {
border-bottom: 0;
}
nav ul {
display: none;
height: auto;
}
nav a#pull {
display: block;
background-color: #a51818;
width: 100%;
position: relative;
text-decoration: none;
/* text-align: center; */
}
nav a#pull:after {
content:"";
background: url('nav-icon.png') no-repeat;
width: 30px;
height: 30px;
display: inline-block;
position: absolute;
right: 15px;
top: 10px;
}
}
@media only screen and (max-width : 320px) {
nav li {
display: block;
float: none;
width: 100%;
}
nav li a {
border-bottom: 1px solid #e64949;
}
}
<script type="text/javascript" src="js/jquery_3_2_1_min.js"></script>
<script type="text/javascript" src="js/jquery_1_6_1_min.js"></script>
<script src="js/jquery.blueberry.js"></script>
<script src="js/menu.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
$(document).bind( "mouseup touchend", function (e){ // событие клика по веб-документу
var div = $(".LittleModal"); // тут указываем класс элемента
var div1 = $(".fa-close"); // тут указываем класс элемента
if ( div1.is(e.target) ) {
ClassTalk.closed(true);
} // скрываем его
});
this.$win.append(
'<div class="Header"><div class="Name">Почта</div><div class="Close"><i class="fa fa-close"></i></div></div>',
this.$content
);
this.$win.draggabilly({
handle: '.Header',
containment: true
});
this.$win.on('click', 'div.Close', function () {
$(".LittleModal").remove();
});
this.$msgInput
.on('keyup', function(e){
if(checkKey(e, 13) && !e.shiftKey){
_self.send($(this));
}
})
.on('keydown', function(e) {
if(checkKey(e, 13) && !e.shiftKey) {
e.preventDefault();
}
});