2024-03-15 17:13:29 +01:00
|
|
|
<template name="config-menu__general">
|
2024-03-04 08:13:12 +01:00
|
|
|
<head>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<form class="config__form">
|
2024-04-01 19:55:34 +02:00
|
|
|
<div class="config__hz-wrapper">
|
|
|
|
<!-- Options -->
|
|
|
|
<div class="config__wrapper">
|
2024-03-04 08:13:12 +01:00
|
|
|
<div class="config-option">
|
|
|
|
<label class="config-option__title">Targeting Mode</label>
|
2024-03-15 17:13:29 +01:00
|
|
|
<div class="config-option__list">
|
2024-04-01 19:55:34 +02:00
|
|
|
<input
|
|
|
|
type="radio"
|
|
|
|
name="targeting_mode"
|
|
|
|
data-checked="targeting_mode"
|
|
|
|
value="Switch"
|
|
|
|
id="tm_switch"
|
|
|
|
/>
|
2024-03-04 08:13:12 +01:00
|
|
|
<label class="config-option__tab-label" for="tm_switch">Switch</label>
|
2024-04-01 19:55:34 +02:00
|
|
|
|
|
|
|
<input
|
|
|
|
type="radio"
|
|
|
|
name="targeting_mode"
|
|
|
|
data-checked="targeting_mode"
|
|
|
|
value="Hold"
|
|
|
|
id="tm_hold"
|
|
|
|
/>
|
2024-03-04 08:13:12 +01:00
|
|
|
<label class="config-option__tab-label" for="tm_hold">Hold</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-04-01 19:55:34 +02:00
|
|
|
|
2024-03-04 08:13:12 +01:00
|
|
|
<div class="config-option">
|
|
|
|
<label class="config-option__title">Rumble Strength</label>
|
2024-03-15 17:13:29 +01:00
|
|
|
<div class="config-option__range-wrapper config-option__list">
|
2024-03-04 08:13:12 +01:00
|
|
|
<label class="config-option__range-label">{{rumble_strength}}</label>
|
2024-04-01 19:55:34 +02:00
|
|
|
<input
|
|
|
|
class="nav-vert"
|
|
|
|
id="rumble_strength_input"
|
|
|
|
type="range"
|
|
|
|
min="0"
|
|
|
|
max="100"
|
|
|
|
style="flex: 1; margin: 0dp;"
|
|
|
|
data-value="rumble_strength"
|
|
|
|
/>
|
2024-03-04 08:13:12 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-04-01 19:55:34 +02:00
|
|
|
<!-- Descriptions -->
|
|
|
|
<div class="config__wrapper">
|
|
|
|
<p data-if="0 == 0">
|
|
|
|
First.
|
|
|
|
</p>
|
|
|
|
<p data-if="1 == 1">
|
|
|
|
Second.
|
|
|
|
</p>
|
|
|
|
</div>
|
2024-03-04 08:13:12 +01:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</template>
|