forked from Thisman/thisman.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (105 loc) · 5.68 KB
/
Copy pathindex.html
File metadata and controls
106 lines (105 loc) · 5.68 KB
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
<html lang="ru">
<head>
<meta http-equiv='Content-Type' content='text/html;charset=UTF-8'>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Condensed:wght@400;700&display=swap" rel="stylesheet">
<title>Сколько сториков?</title>
<!-- Yandex.Metrika counter -->
<script type="text/javascript" >
(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
m[i].l=1*new Date();
for (var j = 0; j < document.scripts.length; j++) {if (document.scripts[j].src === r) { return; }}
k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
ym(92131315, "init", {
clickmap:true,
trackLinks:true,
accurateTrackBounce:true
});
</script>
<noscript><div><img src="https://mc.yandex.ru/watch/92131315" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
<!-- /Yandex.Metrika counter -->
</head>
<body>
<div class="main-container">
<a href="https://github.com/Thisman/thisman.github.io" class="github-link" target="_blank">
<img src="./images/github-icon.png" />
</a>
<div class="description">
<h4>Сайт позволяет посчитать количество сторипоинтов для оценки задачи.</h4>
Оценка строится из трех шагов:
<ol>
<li>Оценить кол-во информации которое известно о задаче и её решении <i>uncertainty</i></li>
<li>Оценить сложность решения задачи. Насколько легко или трудно реализовать задачу, когда о ней всё известно? <i>complexity</i></li>
<li>Оценить объем решения задачи. Сколько обязательных шагов подразумевает решение задачи? <i>effort</i></li>
</ol>
<br />
Чтобы получить оценку задачи, выбери ниже для каждого критерия значение.
</div>
<hr />
<div class="task-properties-container" id="task-properties">
<div class="task-property">
<div class="task-property-name">Какая неопределенность у задачи? <i>uncertainty</i></div>
<div class="task-property-values">
<label class="task-property-value">
<input type="radio" value="low" name="uncertainty" checked />
<span>Низкая</span>
</label>
<label class="task-property-value">
<input type="radio" value="medium" name="uncertainty" />
<span>Средняя</span>
</label>
<label class="task-property-value">
<input type="radio" value="high" name="uncertainty" />
<span>Высокая</span>
</label>
</div>
</div>
<div class="task-property">
<div class="task-property-name">Какая сложность у решения задачи? <i>complexity</i></div>
<div class="task-property-values">
<label class="task-property-value">
<input type="radio" value="low" name="complexity" checked />
<span>Низкая</span>
</label>
<label class="task-property-value">
<input type="radio" value="medium" name="complexity" />
<span>Средняя</span>
</label>
<label class="task-property-value">
<input type="radio" value="high" name="complexity" />
<span>Высокая</span>
</label>
</div>
</div>
<div class="task-property">
<div class="task-property-name">Какой объем у решения задачи? <i>effort</i></div>
<div class="task-property-values">
<label class="task-property-value">
<input type="radio" value="low" name="effort" checked />
<span>Низкий</span>
</label>
<label class="task-property-value">
<input type="radio" value="medium" name="effort" />
<span>Средний</span>
</label>
<label class="task-property-value">
<input type="radio" value="high" name="effort" />
<span>Высокий</span>
</label>
</div>
</div>
</div>
<div class="sp-count-container" id="sp-count">
1 сп
</div>
<div class="sp-count-description" id="sp-description"></div>
</div>
<script src="./index.js"></script>
</body>
</html>