jQuery UI 中是否支持 CSS 精灵
我正在考虑使用 CSS 精灵,但不想发明轮子。 jQuery 或 jQuery UI 是否有现有支持?或者作为替代方案,一个经过良好调试的 jQuery 插件
I'm looking into using CSS sprites, but wouldn't like to invent the wheel.
Is there existing support in jQuery or jQuery UI? Or as an alternative, a well debugged jQuery plugin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用精灵取决于你想要的位置部分的偏移量——javascript无法访问图像数据,那么怎么会有这样的事情呢?
不过,有一些工具可以帮助您制作精灵并为您提供基本 CSS。这是我最喜欢的:
http://csssprites.com/
Using sprites depends on the amount of offset to the part of the position you want -- javascript can't access image data so how would there be such a thing?
There are some tools to help you make sprites and provide you with the base CSS however. Here's my favorite:
http://csssprites.com/
有一些很好的 jquery-tool 演示,您可以复制然后修改。他们有良好的做法。我将从 标签锚 演示开始,他们的 样式表写得很好。
@Mark:选项卡演示使用 一张图像
There are some good jquery-tool demos you can copy and then modify. They have good practices. I would start with the tab anchor demo, their stylesheet is well written.
@Mark: The tabs demo uses one image
根据您想要完成的特定任务(您在 OP 中未指定),您可能根本不需要插件。
通过 jQuery 使用精灵的一种可能方法是为每个精灵状态创建一个单独的类,然后使用 jQuery 更改显示精灵的元素的类属性 .attr():
例如,这是一个使用精灵和 jQuery 的超级简单的图像库:
jsFiddle 示例
脚本:
HTML:
CSS:
Depending on the specific tasks you want to accomplish, which you do not specify in the OP, you might no need a plugin at all.
A possible way to use sprites with jQuery is to create a separate class for each sprite state, and then use jQuery to change the class attribute of the element showing the sprite with .attr():
For example here is a super simple image gallery making use of sprites and jQuery:
jsFiddle example
Script:
HTML:
CSS:
为什么不在 CSS 中完成这一切呢? A la:
这将帮助您开始实际实现它: http://css-tricks.com /css-精灵/
Why not do it all in CSS? A la:
This'll get you started on actually implementing it: http://css-tricks.com/css-sprites/