Ajax 滑块评级系统(不是星级评级)
我正在寻找一个类似于metacritic、ign、gamespot 等上的Ajax 评级脚本。 (示例)
我只找到了星级评分系统一个与我正在寻找的滑块不相似的滑块。 (jquery ui slider)
有人知道我正在寻找的东西吗?否则我愿意付钱给别人来做这项工作。
I'm looking for a Ajax rating script similar to the one on metacritic, ign, gamespot, etc.
(example)
I've found only star rating systems and one slider that is not similar to the one that I'm looking for. (jquery ui slider)
Anyone knows something like that I'm looking for? Otherwise I'm willing to pay someone for this work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
自己开发并不难,您只需要 jQuery/AJAX、CSS 和您选择的服务器端毒药的组合。
这是一个例子:
http://www.99points.info/2010/05/ajax- rating-system-create-simple-ajax- rating-system-using-jquery-ajax-and-php/
本质上你连线客户端事件处理程序向服务器端处理程序/Web 服务发出 AJAX HTTP POST 请求,然后返回响应。
现在,该示例并不完全是一个“滑块”,但它说明了如何实现它。
查看此网站对于大量 AJAX 滑块示例 - 您只需结合两个原则(评级和滑块)就可以了。
显然,如果您不喜欢它的“外观”,您可以修改 CSS/悬停效果来满足您的需求,但这应该可以让您启动并运行。
It's not hard to roll your own, you just need a combination of jQuery/AJAX, CSS and the server-side poison of your choice.
Here is an example:
http://www.99points.info/2010/05/ajax-rating-system-create-simple-ajax-rating-system-using-jquery-ajax-and-php/
Essentially you wire up client-side event handlers which do AJAX HTTP POST requests to your server-side handler/web service, which then return back the response.
Now, that example isn't exactly a "slider" but it illustrates how it can be accomplished.
Check out this site for a multitude of AJAX slider examples - you just need to combine the two principles (rating and slider) and you're good to go.
Obviously if you don't like the "look" of it, you can mess with the CSS/hovering effects to suit your needs, but that should get you up and running.