首页 > 代码库 > jQuery自定义漂亮的下拉框插件8种效果演示
jQuery自定义漂亮的下拉框插件8种效果演示
原始的下拉框不好看这里推荐一个jQuery自定义漂亮的下拉框插件8种效果演示
在线预览
下载地址
实例代码
<!DOCTYPE html> <html lang="en" class="no-js"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>jQuery自定义下拉框插件 | 演示 1</title> <link rel="stylesheet" type="text/css" href="http://www.mamicode.com/css/normalize.css" /> <link rel="stylesheet" type="text/css" href="http://www.mamicode.com/css/demo.css" /> <link rel="stylesheet" type="text/css" href="http://www.mamicode.com/css/cs-select.css" /> <link rel="stylesheet" type="text/css" href="http://www.mamicode.com/css/cs-skin-border.css" /> <!--[if IE]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> </head> <body class="demo-1"> <div class="container"> <header class="codrops-header"> <h1> 自定义选择元素</h1> <nav class="codrops-demos"> <a class="current-demo" href="http://www.mamicode.com/index.html">边框</a> <a href="http://www.mamicode.com/index2.html">下划线</a> <a href="http://www.mamicode.com/index3.html">伸缩</a> <a href="http://www.mamicode.com/index4.html">滑动</a> <a href="http://www.mamicode.com/index5.html">覆盖</a> <a href="http://www.mamicode.com/index6.html">旋转</a> <a href="http://www.mamicode.com/index7.html">弹出层选择</a> <a href="http://www.mamicode.com/index8.html">环形效果</a> </nav> </header> <section> <select class="cs-select cs-skin-border"> <option value="" disabled selected> 联系人方式</option> <option value="http://www.mamicode.com/email">E-Mail</option> <option value="http://www.mamicode.com/twitter">Twitter</option> <option value="http://www.mamicode.com/linkedin">LinkedIn</option> </select> </section> </div><!-- /container --> <script src="http://www.mamicode.com/js/classie.js"></script> <script src="http://www.mamicode.com/js/selectFx.js"></script> <script> (function() { [].slice.call(document.querySelectorAll(‘select.cs-select‘)).forEach(function(el) { new SelectFx(el); }); })(); </script> </body> </html>
jQuery自定义漂亮的下拉框插件8种效果演示
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。