Localizationhttps://github.com/mckamey/countdownjs#localization
Very basic localization is supported via the static setLabels and resetLabels methods. These change the functionality for all timespans on the page.
countdown.resetLabels(); countdown.setLabels(singular, plural, last, delim, empty, formatter);
editableBlock.childNodes[0].textContent = editableBlock.textContent + "!"
editableBlock.innerHTML = editableBlock.innerHTML + "!";
startContainer = editableBlock.childNodes[0];
const editableBlock = document.getElementById("editable-block");
editableBlock.addEventListener("input", function (event) {
// Запоминаем текущую позицию курсора
const selection = window.getSelection();
const {startContainer, startOffset} = selection.getRangeAt(0);
// Обновляем содержимое элемента
startContainer.textContent = startContainer.textContent.substr(0, startOffset) + "!" + startContainer.textContent.substr(startOffset);
// Восстанавливаем позицию курсора
const newRange = document.createRange();
newRange.setStart(startContainer, startOffset + 1);
newRange.setEnd(startContainer, startOffset + 1);
selection.removeAllRanges();
selection.addRange(newRange);
});
CORS (Cross-Origin Resource Sharing) is a system, consisting of transmitting HTTP headers, that determines whether browsers block frontend JavaScript code from accessing responses for cross-origin requests.https://developer.mozilla.org/en-US/docs/Glossary/CORS
$images = glob('img/images/*');
$image = $images[rand(0, count($images) - 1)];
echo '<img src="'.$image.'" class="img">';
#auth-container #auth-card &>div #form-section
, под который ничего не подпадает. Не нужно играться с вложенностью, сделайте хотя бы так:#auth-container {
min-height: 100vh;
background-color: red;
}
#auth-card {
display: flex;
justify-content: center;
&>div {
display: flex;
flex-direction: row;
min-width: 500px;
margin-top: 2.5rem;
background-color: white;
border-radius: 20px;
}
}
#image-section {
background-color: green;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
img {
max-height: 300px;
min-width: 100%;
}
}
#form-section {
min-width: 300px;
h2 {
text-align: center;
}
form {
padding: 20px;
.input-field {
input {
height: 40px;
width: 100%;
box-sizing: border-box;
}
}
button {
width: 100%;
height: 30px;
background-color: blue;
border: none;
color: white;
cursor: pointer;
font-weight: 600;
}
}
}
не могу создать новую базу в идее, создается схемаНаоборот.
CREATE SCHEMA is a synonym for CREATE DATABASEhttps://dev.mysql.com/doc/refman/8.0/en/create-dat...
return arr.filter(...).map(...)
Цель - это Aim или Purpose?А может target?
правильное именование сущностейЧем лучше несуществующие участники твоей несуществующей команды будет знать английский язык, тем больше будет споров о том, какое именование правильнее. Поэтому это дурацкое требование надо заменить на что-то более разумное в духе "to the best of one's ability" и "all disagreements are to be resolved via formal vote".