-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (84 loc) · 3.2 KB
/
index.html
File metadata and controls
88 lines (84 loc) · 3.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Matrix Multiplyer</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<link href="stylesheet.css" rel="stylesheet">
</head>
<body>
<nav>
<button class="btn btn-success" type="submit" id="multiply">
Multiply!
</button>
<br>
<button type="button" class="btn btn-default" aria-label="Left Align" id="clear">
<span class="glyphicon glyphicon-refresh" aria-hidden="true">
</span>
Clear matrices
</button>
<br>
<form method="post" id="radioM">
<div class="btn-group" data-toggle="buttons" id="chooseM">
<label class="btn btn-info active optA">
<input type="radio" name="options" id="optionA" value="a" autocomplete="off" checked>
Matrix A
</label>
<label class="btn btn-info optB">
<input type="radio" name="options" id="optionB" value="b" autocomplete="off">
Matrix B
</label>
</div>
</form>
<br>
<div id="line1">
<button type="button" class="btn btn-default" aria-label="Left Align" id="addS">
<span class="glyphicon glyphicon-plus" aria-hidden="true">
</span>
Add
</button>
<button type="button" class="btn btn-default" aria-label="Left Align" id="deleteS">
<span class="glyphicon glyphicon-minus" aria-hidden="true">
</span>
Delete
</button>
<span id="S">
string
</span>
</div>
<div id="line2">
<button type="button" class="btn btn-default" aria-label="Left Align" id="addC">
<span class="glyphicon glyphicon-plus" aria-hidden="true">
</span>
Add
</button>
<button type="button" class="btn btn-default" aria-label="Left Align" id="deleteC">
<span class="glyphicon glyphicon-minus" aria-hidden="true">
</span>
Delete
</button>
<span id="C">
column
</span>
</div>
</nav>
<section>
<form class="form-inline addhere">
<div class="matrix Amatrix">
</div>
<img id="Msign" src="2000px-Multiplication_Sign.svg.png">
<div class="matrix Bmatrix">
</div>
<img id="Esign">
<div class="matrix Rmatrix">
</div>
</form>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="script.js" rel="text/javascript"></script>
<script src="node_modules/mathjs/dist/math.js" rel="script"></script>
</body>
</html>