自定义 NumberPicker - 优化
Custom NumberPicker - optimization
我有这个 NUMBERPICKER。
但我不希望框中的数字显示在 section_room 中,直到选中一个。在那之前我想要一个背景图像(占位符)。
<div class="section_room">
<select id="persons" type="text" placeholder="" onchange="hideIcon(this);">
<option value="null">1</option>
<option value="null">2</option>
<option value="null">3</option>
<option value="null">4</option>
</select>
</div>
<script>
function hideIcon(self) {
self.style.backgroundImage = 'none';
}
</script>
#persons {
background-image: url(../images/icn_person1_dark.png);
background-size: 40% 80%;
background-repeat: no-repeat;
background-position: center;
}
select {
float:right;
width: 20%;
height: 44px;
color: #858585;
font-size: 0.8725em;
outline: none;
font-family: 'Open Sans', sans-serif;
background: #ffffff;
border-color:darkgrey;
border-style: solid;
border-radius: 2px;
outline: none;
-webkit-appearance: none;
-moz-appearance: none;
text-indent: 1px;
}
select option {
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
试试这个:
<option disabled selected value></option>
它将提供一个 'blank' select离子,直到有人选择一个可用数字。
编辑:没关系。 select 选项中的图像是个糟糕的主意。
在此处查看:Updated JS Fiddle Example
您的完整 <select>
将如下所示:
<select id="persons" type="text" placeholder="" onchange="hideIcon(this);">
<option disabled selected value></option>
<option value="null">1</option>
<option value="null">2</option>
<option value="null">3</option>
<option value="null">4</option>
</select>
Select2 插件的模板功能可以处理这个问题:
Select2
我有这个 NUMBERPICKER。 但我不希望框中的数字显示在 section_room 中,直到选中一个。在那之前我想要一个背景图像(占位符)。
<div class="section_room">
<select id="persons" type="text" placeholder="" onchange="hideIcon(this);">
<option value="null">1</option>
<option value="null">2</option>
<option value="null">3</option>
<option value="null">4</option>
</select>
</div>
<script>
function hideIcon(self) {
self.style.backgroundImage = 'none';
}
</script>
#persons {
background-image: url(../images/icn_person1_dark.png);
background-size: 40% 80%;
background-repeat: no-repeat;
background-position: center;
}
select {
float:right;
width: 20%;
height: 44px;
color: #858585;
font-size: 0.8725em;
outline: none;
font-family: 'Open Sans', sans-serif;
background: #ffffff;
border-color:darkgrey;
border-style: solid;
border-radius: 2px;
outline: none;
-webkit-appearance: none;
-moz-appearance: none;
text-indent: 1px;
}
select option {
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
试试这个:
<option disabled selected value></option>
它将提供一个 'blank' select离子,直到有人选择一个可用数字。
编辑:没关系。 select 选项中的图像是个糟糕的主意。
在此处查看:Updated JS Fiddle Example
您的完整 <select>
将如下所示:
<select id="persons" type="text" placeholder="" onchange="hideIcon(this);">
<option disabled selected value></option>
<option value="null">1</option>
<option value="null">2</option>
<option value="null">3</option>
<option value="null">4</option>
</select>
Select2 插件的模板功能可以处理这个问题: Select2