colorPrices = {
"natural": 0,
"venge": 0,
"dark-walnut": 0,
"white": 600,
}
shelvesPrices = {
"no-shelves": 0,
"2-shelves": 1700,
"4-shelves": 3400,
}
mountPrices = {
"bolts": 0,
"hidden-mounts": 250,
}
deliveryPrices = {
"no-delivery": 0,
"odessa-delivery": 300,
"odessa-delivery-and-assembly": 500,
"nova-poshta": 0,
}
function formula(width, length, color, shelves, mount, delivery) {
let alderPrice = color + shelves + mount + delivery + (width + length) * 25;
let fraxinusPrice = (color + shelves + mount + delivery + (width + length) * 25) + ((color + shelves + mount + (width + length) * 25) * 0.3);
return {
alderPrice,
fraxinusPrice
}
}
<a href="#" class="logo" ><span>hi</span>books</a>
Я создаю таблицу и называю ее его id в телеграмме
3) И потом в таблицу записываю его предпочитания
4) потом просто сравниваю и если есть схожости и вывожу кандидатов
.catalog {
width: 56%;
background-color: aqua;
margin-top: 36px;
margin-left: 26px;
text-align: justify;
}
.product-wrapper {
display: inline-block;
background-color: blue;
margin-bottom: 28px;
height: 226px;
vertical-align: top;
}
.product-wrapper{
width:49.5%;
}
@media only screen and (min-width: 1000px){
.product-wrapper {
width: 32.5%;
}
}
функция formula отвечает за расчёт стоимости по формуле: цвет + ящики + сборка + доставка + (ширина + высота) * 25
на втором сайте размеры высоты фиксированные 200, а ширина меняется с промежутком в 20 и цена на 700