有没有办法让我找到 css sprites 的确切位置?

发布于 2024-10-30 04:51:14 字数 90 浏览 2 评论 0原文

我有一个包含很多图标的图像,我想使用 css sprites 和应该使用的 css 找出每个图标的确切图像位置,是否有一个工具可以用来为我做到这一点,或者给我地点吗?

I have an image that has a lot of icons, and I want to find out the exact image location of each icon using css sprites and the css that is should use, is there a tool that I can use to do that for me, or give me the locations?

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

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

发布评论

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

评论(3

稍尽春風 2024-11-06 04:51:14
微凉 2024-11-06 04:51:14

像这样的工具: http://spritegen.website-performance.org/ 将为并生成与之配套的 CSS。它不会在现有的精灵中找到坐标(你怎么能准确地做到这一点?!),但它会帮助你首先设置它。

A tool like this: http://spritegen.website-performance.org/ will make a sprite for you and generate the CSS to go with it. It won't find the coordinates in existing sprites (how could you do that accurately?!), but it will help to set it up in the first place.

爱人如己 2024-11-06 04:51:14

您可以使用这样的工具并获取精灵中图标的背景位置。

您需要首先上传图像,然后从精灵中选择一个图标。 CSS将会生成,只需复制生成的CSS并在您的类中使用它即可。

其他选项是

  1. 您需要在 Photoshop 等图像编辑器中打开图像。从那里您可以找到图像中任意位置的 X 和 Y 位置。请注意左、上是 0,0。获取 x 和 y 位置并像这样使用

    背景位置:-310px -123px;

请注意 X 和 Y 坐标之前的“-”号。

  1. 开始

    背景位置:1px 1px;

使用 Firebug 即时修改值。通过试错法你可以找到准确的位置。

You can use a tool like this and get background positions of the icons in the sprite.

You need to first upload your image, then select an icon from the sprite. CSS will be generated, just copy the generated CSS and use it in your class.

Other options are

  1. You need to open the image in an image editor like Photoshop. From there you can find the X and Y position anywhere in the image. Please note that left, top is 0,0. Get the x and y position and use like this

    background-position: -310px -123px;

Please note the "-" sign before X and Y co-ordinates.

  1. Start with

    background-position: 1px 1px;

Use Firebug to modify the values on the fly. By trial and error method you can find exact position.

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