-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (109 loc) · 8.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<title>Калькулятор окупаемости A/B-тестирования</title>
<meta name="description" content="Рассчитайте, как A/B-тестирование на Wildberries поможет увеличить вашу прибыль.">
<meta name="keywords" content="A/B-тестирование, Wildberries, калькулятор, ROI, CTR, окупаемость, прибыль, wb, вб, продажи, продвижение">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<header>
<div class="container">
<img src="img/logo.png" alt="MPSolutions | Brain Lab - Лаборатория прибыльного бизнеса на WB и Ozon" class="logo">
<div class="header-text">
<div class="header-title">MPSolutions | Brain Lab</div>
<div class="header-subtitle">Лаборатория прибыльного бизнеса на WB и Ozon</div>
</div>
</div>
</header>
<main>
<div class="container">
<h1>Калькулятор окупаемости A/B-тестирования на Wildberries</h1>
<p class="instruction">Этот калькулятор поможет вам оценить, как A/B-тестирование главного изображения карточки товара на Wildberries может увеличить вашу прибыль. Введите данные о вашей текущей рекламной кампании, предполагаемых затратах на тесты и ожидаемом росте CTR. Калькулятор рассчитает потенциальный прирост прибыли и окупаемость инвестиций в A/B-тестирование. Обратите внимание, что расчёты являются приблизительными и могут отличаться от фактических результатов.</p>
<p class="instruction"><b>Как пользоваться:</b></p>
<ul class="instruction">
<li>Заполните все поля, отмеченные звёздочкой (*).</li>
<li>Нажмите кнопку "Рассчитать".</li>
<li>Изучите таблицу с результатами расчётов для разных вариантов CTR.</li>
<li>Обратите внимание на "Срок окупаемости затрат" и "ROI" - они помогут принять решение об эффективности A/B-тестов.</li>
</ul>
<!-- Блок с видеоинструкцией -->
<div class="video-instruction">
<h2>Видеоинструкция по использованию калькулятора</h2>
<div class="video-container">
<iframe width="720" height="405" src="https://rutube.ru/play/embed/f560a5c0f7ce5fbdd00fd1b904bc8e7b" frameBorder="0" allow="clipboard-write; autoplay" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div>
</div>
<form id="calculator-form">
<h2>Исходные данные:</h2>
<fieldset class="form-group">
<label for="daily-budget">Дневной бюджет на рекламу, руб.*:</label>
<input type="number" id="daily-budget" name="daily-budget" value="3000" placeholder="3000" required>
<div class="hint">Сколько вы в день тратите на рекламу</div>
</fieldset>
<fieldset class="form-group">
<label for="cpm">CPM (стоимость 1000 показов), руб.*:</label>
<input type="number" id="cpm" name="cpm" value="150" placeholder="150" required>
<div class="hint">Ваша ставка за 1000 показов</div>
</fieldset>
<fieldset class="form-group">
<label for="current-ctr">Текущий CTR, %*:</label>
<input type="text" id="current-ctr" name="current-ctr" value="3" placeholder="3" required>
<div class="hint">Ваш текущий CTR</div>
</fieldset>
<fieldset class="form-group">
<label for="cart-conversion">Конверсия в корзину, %*:</label>
<input type="number" id="cart-conversion" name="cart-conversion" value="10" placeholder="10" required>
<div class="hint">Показатель конверсии карточки в корзину из Воронки продаж</div>
</fieldset>
<fieldset class="form-group">
<label for="order-conversion">Конверсия в заказ, %*:</label>
<input type="number" id="order-conversion" name="order-conversion" value="5" placeholder="5" required>
<div class="hint">Показатель конверсии карточки в заказ из Воронки продаж</div>
</fieldset>
<fieldset class="form-group">
<label for="redemption-rate">Процент выкупа, %*:</label>
<input type="number" id="redemption-rate" name="redemption-rate" value="90" placeholder="90" required>
<div class="hint">Процент выкупа карточки из Воронки продаж</div>
</fieldset>
<fieldset class="form-group">
<label for="product-price">Средняя стоимость товара, руб.*:</label>
<input type="number" id="product-price" name="product-price" value="1000" placeholder="1000" required>
<div class="hint">Средняя стоимость товара без СПП (скидка WB)</div>
</fieldset>
<fieldset class="form-group">
<label for="margin">Маржа с единицы товара, руб.*:</label>
<input type="number" id="margin" name="margin" value="300" placeholder="300" required>
<div class="hint">Маржа на 1 ед. товара на основании юнит-экономики без учёта затрат на рекламу</div>
</fieldset>
<fieldset class="form-group">
<label for="design-cost-per-slide">Стоимость 1 слайда дизайна, руб.*:</label>
<input type="number" id="design-cost-per-slide" name="design-cost-per-slide" value="750" placeholder="750" required>
<div class="hint">750₽ - средняя цена за слайд у <b>нормального</b> дизайнера</div>
</fieldset>
<fieldset class="form-group">
<label for="num-design-options">Кол-во вариантов дизайна для теста, шт.*:</label>
<input type="number" id="num-design-options" name="num-design-options" value="20" placeholder="20" required>
<div class="hint">Обычно A/B тест главного изображения запускают сразу на 20 вариантах, чтобы сэкономить время</div>
</fieldset>
<fieldset class="form-group">
<label for="impressions-per-test">Кол-во показов на тест одного варианта, шт.*:</label>
<input type="number" id="impressions-per-test" name="impressions-per-test" value="1000" placeholder="1000" required>
<div class="hint">Минимальное рекомендуемое количество показов для теста - 1000</div>
</fieldset>
<button type="submit" class="calculate-button">Рассчитать</button>
<div class="note">* - Обязательные для заполнения поля</div>
</form>
<div id="results"></div>
<div id="conclusion"></div>
</div>
</main>
<footer>
</footer>
<script src="script.js" type="text/javascript"></script>
</body>
</html>