-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
output.html
155 lines (127 loc) · 3.01 KB
/
output.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html>
<head<!>
<title>Interactive Project Document</title>
<style>
input[type="radio"] {
display: none;
}
.rating{
color: yellow;
width: 200px;
height: 20px;
}
.mad {
display: flex;
overflow: hidden;
border-radius: 10px;
}
.mad>div{
min-width: 100%;
}
.slider {
animation: slide 1s forwards ;
}
@keyframes slide {
from{
}to{
transform: translateX(-100%);
}
}
.slider2 {
animation: slide2 1s forwards ;
}
.slider3 {
animation: slide3 1s forwards ;
}
@keyframes slide2 {
from{
}to{
transform: translateX(100%);
}
}
@keyframes slide3 {
from{
transform: translateX(-100%);
}to{
transform: translateX(0%);
}
}
body {
background-color: rgb(26, 26, 26);
color: white;
font-size: 19px;
font-family: sans-serif;
}
.mad{
background-color: rgb(48, 48, 48);
padding: 50px;
}
.text {
margin: 40px 90px;
}
.div1 button,.div2 button {
font-size: 19px;
margin: 20px 0;
padding: 15px 40px;
background-color: orange;
border: none;
border-radius: 10px;
color: white;
box-shadow: 1px 2px 2px;
cursor: pointer;
}
span{
cursor: pointer;
}
form {
display: flex;
align-items: center;
height: 100vh;
}
.mad{
box-shadow: 2px 2px 4px 2px rgb(134, 134, 134);
}
</style>
</head>
<body>
<form name="interaction_form">
<center>
<div style=" height:320px; width:66%;" class="mad">
<div class="div1">
<h1 id="head">How did we do ?</h1>
<diV>
<p data-valu-holder class="text">
please let us know how we did with your support request.
All feedback is appreciated to help us improve our offering!
</p>
<div>
<span for="rate1" data-number data-star="1">☆</span>
<span for="rate2" data-number data-star="2">☆</span>
<span for="rate3" data-number data-star="3">☆</span>
<span for="rate4" data-number data-star="4">☆</span>
<span for="rate5" data-number data-star="5">☆</span>
</div>
</diV>
<div>
<button onclick="next()">submit</button>
</div>
</div>
<div class="div2">
<h1 id="head2">How did we do ?</h1>
<diV>
<p data-valu-holder>
you selected <span data-rateNumber>
</span>
</p>
</diV>
<div>
<button onclick="previous()">previous</button>
</div>
</div>
<span class="all" imgsrc="IMG_E0767.JPG" alt=""></span>
</center>
</form>
<script src="out.js"></script>
</body>
</html>