mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-07 23:25:04 +01:00
71 lines
3.4 KiB
Plaintext
71 lines
3.4 KiB
Plaintext
<template name="config-menu__general">
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<form class="config__form">
|
|
<div class="config__hz-wrapper">
|
|
<!-- Options -->
|
|
<div class="config__wrapper" data-event-mouseout="set_cur_config_index(-1)">
|
|
<!-- targeting mode -->
|
|
<div class="config-option" data-event-mouseover="set_cur_config_index(0)">
|
|
<label class="config-option__title">Targeting Mode</label>
|
|
<div class="config-option__list">
|
|
<input
|
|
type="radio"
|
|
data-event-blur="set_cur_config_index(-1)"
|
|
data-event-focus="set_cur_config_index(0)"
|
|
name="targeting_mode"
|
|
data-checked="targeting_mode"
|
|
value="Switch"
|
|
id="tm_switch"
|
|
style="nav-up: #tab_general; nav-down: #rumble_strength_input"
|
|
/>
|
|
<label class="config-option__tab-label" for="tm_switch">Switch</label>
|
|
|
|
<input
|
|
type="radio"
|
|
data-event-blur="set_cur_config_index(-1)"
|
|
data-event-focus="set_cur_config_index(0)"
|
|
name="targeting_mode"
|
|
data-checked="targeting_mode"
|
|
value="Hold"
|
|
id="tm_hold"
|
|
style="nav-up: #tab_general; nav-down: #rumble_strength_input"
|
|
/>
|
|
<label class="config-option__tab-label" for="tm_hold">Hold</label>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- rumble strength -->
|
|
<div class="config-option" data-event-mouseover="set_cur_config_index(1)">
|
|
<label class="config-option__title">Rumble Strength</label>
|
|
<div class="config-option__range-wrapper config-option__list">
|
|
<label class="config-option__range-label">{{rumble_strength}}</label>
|
|
<input
|
|
class="nav-vert"
|
|
data-event-blur="set_cur_config_index(-1)"
|
|
data-event-focus="set_cur_config_index(1)"
|
|
id="rumble_strength_input"
|
|
type="range"
|
|
min="0"
|
|
max="100"
|
|
style="flex: 1; margin: 0dp;"
|
|
data-value="rumble_strength"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- Descriptions -->
|
|
<div class="config__wrapper">
|
|
<p data-if="cur_config_index == 0">
|
|
Whether or not targeting is done incorrectly, or targets while you hold the button.
|
|
</p>
|
|
<p data-if="cur_config_index == 1">
|
|
How much your controller go brrrrr
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</template>
|