<div class='main'>
<div class='one' id="четное"></div>
<div class='two' id="нечетное"></div>
</div>
.main{
position: relative;
}
.main div{
position: absolute;
transition: 0.3s;
font-size: 30px;
color: white;
font-weight: bold;
}
.one{
background: red;
}
.two{
background: blue;
}
const четное = document.querySelector('#четное'),
нечетное = document.querySelector('#нечетное');
let text = ['hi', 'privet', 'hallo', 'salam'],
count = 0;
setInterval(() => {
count++;
if(text.length <= count) {
count = 0;
}
if(count % 2 == 0 || count == 0) {
четное.textContent = text[count];
четное.style.opacity = '1';
нечетное.style.opacity = '0';
} else if (count % 2) {
нечетное.textContent = text[count];
нечетное.style.opacity = '1';
четное.style.opacity = '0';
}
}, 1000)
let i = 1
while(i){
let qna = prompt('Введите число','');
if(qna % 2){
alert('Число нечетное!')
} else {
alert('Число четное!')
}
}
img.addEventListiner('click', () => {
let i = 0;
i++;
if(i==1){
поменять url картинки
} else if (i==2){
навесить класс на картинку, чтобы она увеличилась на весь экран с position: fixed
i=0;
}
})
@font-face
{font-family: "Exo2";
src: url("font/Exo2.ttf") format("truetype");
font-style: normal;
font-weight: normal;}
.menu
{background-color: rgb(247, 247, 247);
position: fixed;
opacity: 1;
display: none;
top: 0; right: 0;
width: 100%;
height: 120vh;
z-index: 100;
animation: menus 0.5s;
animation-fill-mode: forwards;}
@keyframes menus
{70%{opacity: 0; right: 0;}
99%{right: 0;}
100%{opacity: 0; display: none; right: -105%;}}
.menu_active
{opacity: 0;
animation: menus2 0.5s;
animation-fill-mode: forwards;}
@keyframes menus2
{0%{display: none; opacity: 0;}
10%{display: block; opacity: 0;}
100%{opacity: 1; display: block;}}