1<!-- 2Copyright (c) 2025 Huawei Device Co., Ltd. 3Licensed under the Apache License, Version 2.0 (the "License"); 4you may not use this file except in compliance with the License. 5You may obtain a copy of the License at 6 7 http://www.apache.org/licenses/LICENSE-2.0 8 9Unless required by applicable law or agreed to in writing, software 10distributed under the License is distributed on an "AS IS" BASIS, 11WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12See the License for the specific language governing permissions and 13limitations under the License. 14--> 15 16<div class="container"> 17 <div class="slider_container"> 18 <text class="text_content"> 19 slider start value is: {{startValue}} 20 </text> 21 <text class="text_content"> 22 slider current value is: {{currentValue}} 23 </text> 24 <text class="text_content"> 25 slider end value is: {{endValue}} 26 </text> 27 <slider class="slider" min="{{ startValue }}" max="{{ endValue }}" 28 value="{{value}}" onchange="setValue" ref="sliderObj" > 29 30 </slider> 31 </div> 32 <div class="option_container"> 33 <input class="option_input" value="{{optionName}}" onclick="onChangeOption"> 34 </input> 35 </div> 36 <input class="back-page" value="homepage" onclick="backPage"> 37 </input> 38</div> 39