Как сделать, чтобы элемент появлялся при клике на кнопку плавно, но в дальнейшем не исчезал при повторном нажатии на эту кнопку, а
оставался видимым до обновления страницы?
Репозиторий с кодом и мой текущий вариант -
https://github.com/MakPet/eCommerece
Результат -
https://makpet.github.io/eCommerece/
Нужные фрагменты кода в репозитории
<div class="add-to">
<div class="add-to-inner">
<div class="heart" id="heart"></div>
<button class="wishlist" onclick="toggle(heart)">Add to wishlist</button>
</div>
<div class="add-to-inner">
<div class="copy" id="copy"></div>
<button class="compare" onclick="toggle(copy)">Add to Compare</button>
</div>
</div>
.add-to {
display: flex;
justify-content: space-between;
font-size: 13px;
line-height: 22px;
letter-spacing: 0.26px;
color: #000;
}
.add-to-inner {
display: flex;
}
.wishlist, .compare {
color: #000;
}
.heart, .copy {
visibility: hidden;
}
.heart::before {
font-family: 'icomoon';
content: "\f004";
font-size: 16px;
color: #f14d4d;
margin-right: 5px;;
}
.copy::before {
font-family: 'icomoon';
content: "\f0c5";
font-size: 16px;
color: #f14d4d;
margin-right: 4px;
}
function toggle (ident) {
(ident.style.visibility == 'visible') ? ident.style.cssText="visibility: hidden" : ident.style.cssText="visibility: visible"
}
function toggle (ident) {
(ident.style.visibility == 'visible') ? ident.style.cssText="visibility: hidden" : ident.style.cssText="visibility: visible"
}
Пока кнопки работают только в этом блоке