jQuery 插件,允许像谷歌翻译一样的下拉菜单

发布于 2024-11-09 05:28:25 字数 244 浏览 0 评论 0原文

我非常喜欢谷歌翻译的下拉菜单,它允许选择语言(从 -> 到)。 它可以让您快速概览所有可用语言(选项),并用不同的颜色指示您选择的历史记录。 http://translate.google.com/

我想知道是否有人知道一个可以转换的 jQuery 插件只需在下拉菜单中进行选择,看起来像谷歌翻译选择。 谢谢,

安东尼奥

I like a lot the drop down menu of google translate that allow to choose languages (from -> to).
It gives you a quick overview of all languages (options) available and it indicates with different colors the history of your choice.
http://translate.google.com/

I'm wondering if hopefully, anyone knows a jQuery plugin to transform a simply select in a drop down menu which looks like the google translate select.
Thanks,

Antonio

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

能否归途做我良人 2024-11-16 05:28:25

您实际上并不需要插件,只需要一些 CSS 定位并使用 JS 来显示/隐藏单击部分。

HTML:

<div id="my_button">Click me!</div>

<div id="mega_menu">
    <ul>
        <li>...</li>
    </ul>
</div>

CSS:

#mega_menu { display:none; left:50px; position:absolute; top:50px; }
/* Position as necessary */

JavaScript:

$('#my_button').bind('click', function( e ) {

    e.preventDefault();

    var menu = $('#mega_menu');

    if ( menu.is(':visible') )
    {
        menu.fadeOut();
    }
    else
    {
        menu.fadeIn();
    }
});

You don't really need a plugin, just some CSS positioning and use JS to show/hide the section on click.

HTML:

<div id="my_button">Click me!</div>

<div id="mega_menu">
    <ul>
        <li>...</li>
    </ul>
</div>

CSS:

#mega_menu { display:none; left:50px; position:absolute; top:50px; }
/* Position as necessary */

JavaScript:

$('#my_button').bind('click', function( e ) {

    e.preventDefault();

    var menu = $('#mega_menu');

    if ( menu.is(':visible') )
    {
        menu.fadeOut();
    }
    else
    {
        menu.fadeIn();
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文