您好,欢迎访问一九零五行业门户网

select下拉框的右边怎么增加提示图标

这次给大家带来select下拉框的右边怎么增加提示图标,select下拉框右边增加提示图标的注意事项有哪些,下面就是实战案例,一起来看一下。
本文给大家讲h5、select下拉框右边加图标,深度美化页面增进用户体验效果
1.那么我们先来看一下效果吧!
2.再看看h5的结构:
<p id="login-p">                 <p class="select-wrapper">                     <select id="selector1">                         <option value="" disabled selected>请选择系统:</option>                         <option value="1">微信-苹果</option>                         <option value="2">微信-安卓</option>                     </select>                     <img src="ossweb-img/arrow.png" alt="" class="arrow" />                 </p>                 <p class="select-wrapper">                     <select id="selector2">                         <option value="" disabled selected>请选择渠道:</option>                         <option value="1">渠道1</option>                         <option value="2">渠道2</option>                     </select>                     <img src="ossweb-img/arrow.png" alt="" class="arrow" />                 </p>                 <p class="select-wrapper">                     <select id="selector3">                         <option value="" disabled selected>请选择大区:</option>                         <option value="1">大区1</option>                         <option value="2">大区2</option>                     </select>                     <img src="ossweb-img/arrow.png" alt="" class="arrow" />                 </p>                 <p class="select-wrapper">                     <select id="selector4">                         <option value="" disabled selected>请选择角色:</option>                         <option value="1">角色1</option>                         <option value="2">角色2</option>                     </select>                     <img src="ossweb-img/arrow.png" alt="" class="arrow" />                 </p>                 <p id="notice">单个帐号只能领取一次奖励</p>                 <img src="ossweb-img/comfire1.png" alt="" id="comfire1"/>             </p>
3.样式部分是用了sass进行控制的,如果不会sass也可以换成css。没有什么特别的运算需要转化,所以换成css也简单
@function rem($n){         @return $n/$rem*1rem;     }  #login-p{         background: url(../ossweb-img/kuang1.png)0 0 no-repeat;         background-size: 100% 100%;         width: rem(564);         height: rem(531);         margin-left: rem(38);         .select-wrapper{             position: relative;             display: flex;             justify-content: center;             align-items: center;             height: rem(50);             margin: rem(10) auto;             padding-top: rem(15);             &>select{                 width: rem(458);                 height: rem(63);                 padding-left: rem(20);                 border: 1px solid #23282d;                 background: #23282d;                 -webkit-appearance: none;                 color: #92989f;                 font-size: rem(24);                 margin-top: rem(75);                 border-radius: 0;                 z-index:10;             }             .arrow{                 position: absolute;                 width: rem(41);                 height: rem(30);                 top: rem(65);                 right: rem(80);                 pointer-events: none;                 z-index:11;             }         }         #notice{                 font-size: rem(20);                 color: #92989f;                 text-align: center;                 margin-top: rem(75);         }         #comfire1{                 width: rem(220);                 height: rem(78);                 margin-top: rem(20);                 margin-left: rem(174);         }     }
4.解析:主要是.arrow这个元素进行右边那个图标的位置控制。利用position: absolute;这个属性控制好位置,就基本没有问题了。
相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!
推荐阅读:
h5实现桌面通知
h5在canvas中实现自定义路径动画
使用canvas实现视频里的弹幕效果
以上就是select下拉框的右边怎么增加提示图标的详细内容。
其它类似信息

推荐信息