forked from qbcore-redm-framework/qbr-inventory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.html
90 lines (87 loc) · 5.38 KB
/
ui.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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Custom CSS -->
<link rel="stylesheet" type="text/css" href="css/main.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<!-- jQuery UI -->
<link rel="stylesheet" href="https://code.jquery.com/ui/1.13.0/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/ui/1.13.0/jquery-ui.js" integrity="sha256-xH4q8N0pEzrZMaRmd7gQVcTZiFei+HfRTBPJ1OGXC0k=" crossorigin="anonymous"></script>
</head>
<body style="background-color: rgba(0,0,0,0); font-family: 'Roboto', sans-serif !important;">
<div id="qbcore-inventory">
<div class="inventory-info">
<div class="player-inv-info">
<span id="player-inv-label">Player Inventory</span><br>
<span id="player-inv-weight"></span>
</div>
<div class="other-inv-info">
<span id="other-inv-label"></span><br>
<span id="other-inv-weight"></span>
</div>
</div>
<div class="inv-container">
<div class="ply-inv-container">
<div class="player-inventory" data-inventory="player"></div>
</div>
<div class="inv-options">
<div class="inv-options-list">
<input type="number" id="item-amount" class="inv-option-item" min=0 value="0" oninput="validity.valid||(value='');"></input>
<div class="inv-option-item" id="item-use"><p>USE</p></div>
<div class="inv-option-item" id="item-give"><p>GIVE</p></div>
<div class="inv-option-item" id="inv-close"><p>CLOSE</p></div>
</div>
</div>
<div class="oth-inv-container">
<div class="other-inventory" data-inventory="other">
<!-- auto generated -->
</div>
</div>
</div>
<div class="ply-hotbar-inventory" data-inventory="hotbar">
<!-- auto generated -->
</div>
<div class="ply-iteminfo-container">
<div class="ply-iteminfo">
<div class="iteminfo-content">
<div class="item-info-title"></div>
<div class="item-info-line"></div>
<div class="item-info-description"></div>
</div>
</div>
</div>
<div class="inv-background"></div>
</div>
<div class="weapon-attachments-container">
<div class="weapon-attachments-container-title">Pistol | <span style="font-size: 2vh;">9mm</span></div>
<div class="weapon-attachments-container-description">This is a water gun yaay ...</div>
<div class="weapon-attachments-container-details"><span style="font-weight: bold; letter-spacing: .1vh;">Serial Number</span><br> 12345678<br><br><span style="font-weight: bold; letter-spacing: .1vh;">Durability</span> <div class="weapon-attachments-container-detail-durability"><div class="weapon-attachments-container-detail-durability-total"></div></div></div>
<img src="./attachment_images/weapon_pistol.png" class="weapon-attachments-container-image">
<div class="weapon-attachments-title"><span style="font-weight: bold; letter-spacing: .1vh;">Attachments</span></div>
<div class="weapon-attachments">
</div>
<div class="weapon-attachments-remove"><i class="fas fa-trash"></i></div>
<div class="weapon-attachments-back"><p>RETURN</p></div>
</div>
<div class="combine-option-container">
<div class="btn-combine CombineItem"><p>Combine</p></div>
<div class="btn-combine SwitchItem"><p>Switch</p></div>
</div>
<div class="itemboxes-container"></div>
<div class="itembox-container template"></div>
<div class="requiredItem-container">
</div>
<div class="z-hotbar-inventory">
<!-- auto generated -->
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src="js/app.js" type="text/javascript"></script>
</body>
</html>