.row
.col-6
.row
.col-12
.col-12
.col-12
.col-12
.col-6
let images = [
"image1.png",
"image2.png",
"image3.png",
"image434.png",
];
let counter = 0;
setInterval(function() {
$(".banner").css("background" , images[counter % images.length]);
}, 3000);
.circle {
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: red;
}
.circle .icon {
line-height: 100%;
}
.textwork {
position: fixed;
width: 30%;
right: 40px;
top: 50%;
transform: translateY(-50%);
}
tr:nth-child(odd) td:nth-child(odd) {
background: white;
}
tr:nth-child(odd) td:nth-child(even) {
background: black;
}
tr:nth-child(even) td:nth-child(even) {
background: white;
}
tr:nth-child(even) td:nth-child(odd) {
background: black;
}
let A = 1;
let B = 0;
let C = 1;
console.log(eval("A&B|(!C)"));
viewport
, например как на тостере:<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
:target
и задать id. Каждый id соответствует хешу ссылки кружочка. Тем самым при клике на ссылку, в адрес страницы добавиться хеш из ссылки, элемент, у которого id такой-же как хеш в адресе страницы, будет задано состояние :target
. Так и манипулируй слайдами, у которых не активно это состояние, те скрывай.