使用css打造自定义select(非模拟)实现原理及样式
网站建设 2023-01-28 20:49www.1681989.com免费网站
实现原理很简单
1,使用appearance:none去除select的默认样式;
2,配合使用gradient、background-size,background-position,拼出自定义的样式
我定义的样式和浏览器默认给出的样式没多大差别,主要是简单实现一下,大家可以发挥想象力做出绚丽的select。
实现css如下
select{
marg: 0;
paddg: 0;
outle: none;
height: 25px;
le-height: 25px;
width: 120px;
border: rgb(191, 204, 220) 1px solid;
border-radius: 3px;
display: le-block;
font: normal 12px/25px "微软雅黑", "SimSun", "宋体", "Arial";
background-size: 5px 5px,5px 5px,25px 25px,1px 25px;
background-color: #fff;
background-image: repeatg-lear-gradient(225deg,rgb(105,123,149) 0%,rgb(105,123,149) 50%,transparent 50%,transparent 100%),
repeatg-lear-gradient(135deg,rgb(105,123,149) 0%,rgb(105,123,149) 50%,transparent 50%,transparent 100%),
lear-gradient( #FFFFFF 0%,#F8F9Fd, #EFFAFA 100%),
repeatg-lear-gradient( rgb(191, 204, 220) 0%,rgb(191, 204, 220) 100%);
background-repeat: no-repeat;
background-position: 101px 10px,106px 10px,right ,92px ;
-webkit-appearance: none
}
对CSS掌握的不是很好,用的比较笨拙,还请高手指教。
http://.smilce./?p=244
1,使用appearance:none去除select的默认样式;
2,配合使用gradient、background-size,background-position,拼出自定义的样式
我定义的样式和浏览器默认给出的样式没多大差别,主要是简单实现一下,大家可以发挥想象力做出绚丽的select。
实现css如下
复制代码
代码如下:select{
marg: 0;
paddg: 0;
outle: none;
height: 25px;
le-height: 25px;
width: 120px;
border: rgb(191, 204, 220) 1px solid;
border-radius: 3px;
display: le-block;
font: normal 12px/25px "微软雅黑", "SimSun", "宋体", "Arial";
background-size: 5px 5px,5px 5px,25px 25px,1px 25px;
background-color: #fff;
background-image: repeatg-lear-gradient(225deg,rgb(105,123,149) 0%,rgb(105,123,149) 50%,transparent 50%,transparent 100%),
repeatg-lear-gradient(135deg,rgb(105,123,149) 0%,rgb(105,123,149) 50%,transparent 50%,transparent 100%),
lear-gradient( #FFFFFF 0%,#F8F9Fd, #EFFAFA 100%),
repeatg-lear-gradient( rgb(191, 204, 220) 0%,rgb(191, 204, 220) 100%);
background-repeat: no-repeat;
background-position: 101px 10px,106px 10px,right ,92px ;
-webkit-appearance: none
}
对CSS掌握的不是很好,用的比较笨拙,还请高手指教。
http://.smilce./?p=244
上一篇:even事件浏览器兼容性实例介绍
下一篇:CSS相册简单实现方法(功能分析及代码)