替代 jquery 评级插件?

发布于 2024-11-02 00:36:59 字数 454 浏览 7 评论 0原文


标题不是很说明问题,但我会尽力解释。

我正在寻找一个 jquery 评级插件,其行为类似于标准星级评级,但根据所选值支持不同的图像和颜色

,比例为 1-10:

  • 例如,悬停或选择所有图像/颜色时 1-3悬停或选择时为红色
  • 4-7 所有图像/颜色均为黄色
  • 悬停或选择时为 8-10 所有图像/颜色均为绿色

我发现 这个。但他们并没有完全满足我的要求。

因此,如果有人知道是否有东西存在,将为我节省大量创建新插件的时间。

The title is not very illustrating, but I'll try to explain.

I'm looking for a jquery rating plugin which behaves like a standard star rating, but supports different images and colors depending on the selected value

For example, on the scale of 1-10:

  • 1-3 when hovered or selected all images/colors are red
  • 4-7 when hovered or selected all images/colors are yellow
  • 8-10 when hovered or selected all images/colors are green

I found this and this. but they don't quite do what I'm looking for.

So if anyone knows if there is something out there will save me a lot of time for creating a new plugin.

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

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

发布评论

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

评论(1

很酷又爱笑 2024-11-09 00:36:59

为什么不自己做呢?我已经构建了一个小演示来证明这是可能的: http://jsfiddle.net/s2zPW/18/

代码也不难:

HTML:

<ul class="rating"></ul>

JavaScript:

$.fn.reverse = function() {
    return this.pushStack(this.get().reverse(), arguments);
};

// create two new functions: prevALL and nextALL. they're very similar, hence this style.
$.each(['prev', 'next'], function(unusedIndex, name) {
    $.fn[name + 'ALL'] = function(matchExpr) {
        // get all the elements in the body, including the body.
        var $all = $('body').find('*').andSelf();

        // slice the $all object according to which way we're looking
        $all = (name == 'prev') ? $all.slice(0, $all.index(this)).reverse() : $all.slice($all.index(this) + 1);
        // filter the matches if specified
        if (matchExpr) $all = $all.filter(matchExpr);
        return $all;
    };
});

for (var i = 0; i < 10; i++) {
    $('.rating').append('<li>' + i + '</li>');
}

$('.rating li').hover(function() {
    if ($(this).index() < 2) {
        $(this).prevALL('li').css('background-color', 'rgb(255, 160, 160)');
    } else if ($(this).index() < 4) {
        $(this).prevALL('li').css('background-color', 'rgb(255, 200, 200)');
    } else if ($(this).index() < 7) {
        $(this).prevALL('li').css('background-color', 'rgb(235, 220, 200)');
    } else if ($(this).index() < 10) {
        $(this).prevALL('li').css('background-color', 'rgb(200, 255, 200)');
    }
}, function() {
    $(this).parent().children().css('background-color', 'rgb(200, 200, 200)');
});

Why not make your own? I've already built a little demo to show that it's possible: http://jsfiddle.net/s2zPW/18/.

The code isn't that hard either:

HTML:

<ul class="rating"></ul>

JavaScript:

$.fn.reverse = function() {
    return this.pushStack(this.get().reverse(), arguments);
};

// create two new functions: prevALL and nextALL. they're very similar, hence this style.
$.each(['prev', 'next'], function(unusedIndex, name) {
    $.fn[name + 'ALL'] = function(matchExpr) {
        // get all the elements in the body, including the body.
        var $all = $('body').find('*').andSelf();

        // slice the $all object according to which way we're looking
        $all = (name == 'prev') ? $all.slice(0, $all.index(this)).reverse() : $all.slice($all.index(this) + 1);
        // filter the matches if specified
        if (matchExpr) $all = $all.filter(matchExpr);
        return $all;
    };
});

for (var i = 0; i < 10; i++) {
    $('.rating').append('<li>' + i + '</li>');
}

$('.rating li').hover(function() {
    if ($(this).index() < 2) {
        $(this).prevALL('li').css('background-color', 'rgb(255, 160, 160)');
    } else if ($(this).index() < 4) {
        $(this).prevALL('li').css('background-color', 'rgb(255, 200, 200)');
    } else if ($(this).index() < 7) {
        $(this).prevALL('li').css('background-color', 'rgb(235, 220, 200)');
    } else if ($(this).index() < 10) {
        $(this).prevALL('li').css('background-color', 'rgb(200, 255, 200)');
    }
}, function() {
    $(this).parent().children().css('background-color', 'rgb(200, 200, 200)');
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文