This repository has been archived by the owner on Mar 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
89 lines (80 loc) · 3.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PM – Cost / Benifit Calculator</title>
<link rel="stylesheet" href="./normalize.css">
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,400;1,600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="./scripts.js"></script>
</head>
<body>
<h1>Cost / Benifit Calculator</h1>
<p>A simple calculator for determining the feasibility score of a feature or enhancement.</p>
<h2>Benifits</h2>
<label>Customer Value</label>
<p>How much does this benefit the user directly? Are user's requesting the feature, has data shown it will improve their experience?</p>
<div class="rubric-list">
<p><strong>1:</strong> Little to no value, likely makes our lives easier rather than the user's.</p>
<p><strong>5:</strong> A welcomed and appreciated feature, not necessarily required.</p>
<p><strong>10:</strong> Absolutely critical to the value proposition. Wouldn’t use the product without it.</p>
</div>
<div class="btn-group">
<button data-group="cv" data-value="1">1</button>
<button data-group="cv" data-value="2">2</button>
<button data-group="cv" data-value="3">3</button>
<button data-group="cv" data-value="4">4</button>
<button data-group="cv" data-value="5">5</button>
<button data-group="cv" data-value="6">6</button>
<button data-group="cv" data-value="7">7</button>
<button data-group="cv" data-value="8">8</button>
<button data-group="cv" data-value="9">9</button>
<button data-group="cv" data-value="10">10</button>
</div>
<label>Is this a Cloud feature or does it directly generate revenue?</label>
<div class="btn-group">
<button data-group="cf" data-value="1">Yes</button>
<button data-group="cf" data-value="0">No</button>
</div>
<label>Strategic / Competitive Value</label>
<div class="rubric-list">
<p><strong>1:</strong> Likely improves the user experience a bit, but doesn’t set us apart in the market at all.</p>
<p><strong>5:</strong> Provides a notable advantage in the market.</p>
<p><strong>10:</strong> Required to be noticeable in the market or even considered against competitors.</p>
</div>
<div class="btn-group">
<button data-group="scv" data-value="1">1</button>
<button data-group="scv" data-value="2">2</button>
<button data-group="scv" data-value="3">3</button>
<button data-group="scv" data-value="4">4</button>
<button data-group="scv" data-value="5">5</button>
<button data-group="scv" data-value="6">6</button>
<button data-group="scv" data-value="7">7</button>
<button data-group="scv" data-value="8">8</button>
<button data-group="scv" data-value="9">9</button>
<button data-group="scv" data-value="10">10</button>
</div>
<h2>Costs</h2>
<label>Implementation Effort</label>
<div class="rubric-list">
<p><strong>1:</strong> trivial. Could go in a patch release.</p>
<p><strong>5:</strong> Requires a decent amount of time, would go in a minor release.</p>
<p><strong>10:</strong> Requires major underlying restructuring or refactor, would result in a major version bump.</p>
</div>
<div class="btn-group">
<button data-group="ie" data-value="1">1</button>
<button data-group="ie" data-value="2">2</button>
<button data-group="ie" data-value="3">3</button>
<button data-group="ie" data-value="4">4</button>
<button data-group="ie" data-value="5">5</button>
<button data-group="ie" data-value="6">6</button>
<button data-group="ie" data-value="7">7</button>
<button data-group="ie" data-value="8">8</button>
<button data-group="ie" data-value="9">9</button>
<button data-group="ie" data-value="10">10</button>
</div>
<h2>Feasibility Score: <strong class="feasibilityScore">0</strong></h2>
</body>
</html>