-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhow-it-works.php.save
executable file
·86 lines (74 loc) · 2.41 KB
/
how-it-works.php.save
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id="background" style="width: 1000px;">
<h1>How it works</h1>
<p><i>AI will propose you solutions one at a time. You evaluate them and tell the AI. You can always propose solutions and steer the AI.</i></p>
<div class="slideshow-container">
<div class="mySlides fade">
<img src="Pictures/Picture5.svg" style="width:800px">
</div>
<!-- <div class="mySlides fade">
<img src="Pictures/Picture2.png" style="width:350px">
</div>
<div class="mySlides fade">
<img src="Pictures/Picture3.png" style="width:350px">
</div> -->
</div>
<br>
<div style="text-align:center">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>
<div style="text-align: right;">
<form action="define.php">
<input type="submit" value="Ready" class="button" style="width: 20%;"/>
</form>
</div>
</div>
<style>
.mySlides {
display: none;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
/* Slideshow container */
.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
}
.active {
background-color: #717171;
}
</style>
<script>
let slideIndex = 0;
showSlides();
function showSlides() {
let i;
let slides = document.getElementsByClassName("mySlides");
let dots = document.getElementsByClassName("dot");
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
slideIndex++;
if (slideIndex > slides.length) {slideIndex = 1}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
setTimeout(showSlides, 2000); // Change image every 2 seconds
}
</script>
</body>
</html>