-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobjectview.php
150 lines (111 loc) · 5.26 KB
/
objectview.php
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
<!--
Project: Home Inventory Helper
File Name : objectview.php
Version : 0.1
Branch : 1
Started : 2020_04_14
PURPOSE:
Display one object details.
-->
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<!-- Special icons fonts need to be fetch from here. -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<title>Cardboard search</title>
</head>
<body class="objectview-wrapper">
<!--*****************************************************************************
------------------------------TOP--------------------------
-********************************************************************************-->
<!--*****************************************************************************
------------------------------SEARCH BAR--------------------------
-********************************************************************************-->
<!--*****************************************************************************
------------------------------ MENU --------------------------
-********************************************************************************-->
<!--*****************************************************************************
------------------------------Object View Upper Section--------------------------
-********************************************************************************-->
<!--Go back button and photo carousel -->
<div class="objectview-pict" id="">
<!-- A GO BACK button -->
<!-- Caution : id used by JS script // not at the moment
<a id="objectview-goBackButton-pict" href="livesearchview.php" onclick="">
<i class="fas fa-arrow-left searchview-topbar-goback"></i>
</a>
-->
<!-- Slideshow container
See https://www.w3schools.com/howto/howto_js_slideshow.asp-->
<div class="slideshow-container">
<!-- Full-width images -->
<div class="mySlides fade">
<img src="img_nature_wide.jpg" style="width:100%">
</div>
<div class="mySlides fade">
<img src="img_snow_wide.jpg" style="width:100%">
</div>
<div class="mySlides fade">
<img src="img_mountains_wide.jpg" style="width:100%">
</div>
<!-- Next and previous buttons -->
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<br>
<!-- The dots/circles -->
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
</div>
<!--*****************************************************************************
<!------------------------------OBJECT VIEW'S INFO SECTION------------------------
<!---***************************************************************************-->
<!-- Name -->
<div class="objectview-title">
<!-- A GO BACK button -->
<!-- Caution : id used by JS script // not at the moment-->
<a id="objectview-goBackButton-title" href="livesearchview.php" onclick="">
<i class="fas fa-arrow-left searchview-topbar-goback"></i>
</a>
<h2>Children's staff</h2>
</div>
<!-- Weight and price -->
<!-- Last edited time -->
<!-----------------Object Description--------------------->
<div class="objectview-info">
<h3 class="" id="" action="">General</h3>
<div class="objectview-info-details-label" id="">Description</div>
<div class="info-edit-button" id="" action="">
<button id="" class="info-edit-button" onclick="">Forward<i class="fa fa-share" aria-hidden="true"></i></button>
<button id="" class="info-edit-button" onclick="">Save<i class="fa fa-flag" aria-hidden="true"></i></button>
<button id="" class="info-edit-button" onclick="">Edit<i class="fa fa-pencil" aria-hidden="true"></i></button>
</div>
<!-----------------Object Details-------------------------->
<div id="objectview-info-details" class=""><h3>Details</h3></div>
<div id="" class="objectview-info-details-label">Items</div>
<div id="" class="objectview-info-details-label-value">(no selection)</div>
<div id="" class="objectview-info-details-label">Handling</div>
<div id="" class="objectview-info-details-label-value">Normal</div>
<div id="" class="objectview-info-details-label">State</div>
<div id="" class="objectview-info-details-label-value">New</div>
<div id="" class="objectview-info-details-label">Going to</div>
<div id="" class="objectview-info-details-label-value">Kid's room</div>
<div id="" class="system-history-info">Last edited</div>
<div id="" class="system-history-info-value">22h ago</div>
</div>
</body>
<script src="myScript.js">
<!-- This special icons font needs credentials called "Kit Code". -->
// to prevent a resubmit on refresh and back button.
if ( window.history.replaceState ) {
window.history.replaceState( null, null, window.location.href );
</script>
<script src="https://kit.fontawesome.com/1e0bf4fd11.js"></script>
</html>