教程集 www.jiaochengji.com
教程集 >  jQuery  >  jQuery 插件  >  正文 Mac-Style Drop Down Menu

Mac-Style Drop Down Menu

发布时间:2014-08-05   编辑:jiaochengji.com
Description This plugin dynamically skin default form's drop down menu, i.e. <select>, of choice as if rendered on Safari browser; thus, the name: Mac-Style Drop Down Menu. In a general sense, the plugin serves as a foundation for further custo
DescriptionThis plugin dynamically skin default form's drop down menu, i.e. <select>, of choice as if rendered on Safari browser; thus, the name: Mac-Style Drop Down Menu.In a general sense, the plugin serves as a foundation for further customization (new skin, animation, etc.). This is particularly useful when you want to create a drop down menu that has consistent look across different browsers. Please don't hesitate to create support requests if you have any problems or suggestions/comments.DesignSafe-fail: the default drop down will still work when Javascript is disabled.Progressive enhancement (at least, I tried hard to comply).Latest ReleasesVersion 1.0, for download and release notes please go to modmac v1.0.For older versions, see Releases below.CompatibilityThis plugin has been tested to be compatible with Internet Explorer 7.0, Firefox 2.0, and Safari 2.0 or greater.How to UseCall modmac function on <select> element to which you want to apply the skin. Yep, that's all you need to do....
$(document).ready(function() {
$('#id').modmac();
});
...
<form method="get" action="/scripts/backend.php">
  <!-- simply code using the default markup -->
  <select id="id" name="month">
    <option value="January" selected="selected">January</option>
    <option value="February">February</option>
    <option value="March">March</option>
  </select>
  ...

DemoPlease visit: http://www.mulyadi.org/demo/jquery/modmac/modmac.html

您可能感兴趣的文章:
Mac-Style Drop Down Menu
来自国外的30个基于jquery的Web下拉菜单
jQuery下拉菜单插件 jQuery Simple Drop Down Menu
15款优秀的jQuery导航菜单插件分享
jQuery Multi Level horizontal CSS Menu
左则导行菜单
精心挑选的15个jQuery下拉菜单制作教程
js 网站导航下拉菜单代码-css导航菜单
css 三级横向弹出菜单
Drop Down Panel script

[关闭]
~ ~