在.NET中实时创建csssprites

发布于 2024-07-16 11:19:12 字数 80 浏览 3 评论 0原文

有人为 .NET 创建了“实时”csssprite 生成器吗?

我想要一个或多个在运行时加载图像的目录,并且自动生成 css。

Has anyone created a 'realtime' csssprite generator for .NET ?

I want one or more directories of images that get loaded at runtime and the css is automatically generated.

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

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

发布评论

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

评论(3

请持续率性 2024-07-23 11:19:12

就在这里。 你会发现它在
http://www.codeproject.com/KB/aspnet/cssspritegenerator.aspx

与 Microsoft 在 sprite 方面的尝试不同,使用此软件包您无需更改图像的存储方式及其显示方式。 您只需添加 .dll 并使用几行代码在 web.config 中配置该包即可。

该软件包还可以让您动态调整图像大小、压缩图像以及其他好东西。

Yes, there is. You'll find it at
http://www.codeproject.com/KB/aspnet/cssspritegenerator.aspx

Unlike Microsoft's attempt at sprites, with this package you don't have to change the way your images are stored and how they are shown. You simply add the .dll and configure the package in your web.config with a few lines.

This package also lets you resize images on the fly, compress them and other good things.

百合的盛世恋 2024-07-23 11:19:12

这就是您要找的吗为了?
这是我发现的最接近烘焙解决方案的方法。

Is this what you are looking for?
It's the closest I found to a baked solution.

梦与时光遇 2024-07-23 11:19:12

好吧,最后是官方的东西.​​..

尚不清楚它是否会进入核心 ASP.NET 框架,但这里有一个针对 csssprites 的 Microsoft codeplex 项目:

http://aspnet.codeplex.com/releases/view/50869

如果您喜欢它 - 使用它 - 或者只是喜欢这个想法然后添加评论。 我认为这对于 ASP.NET 框架来说是一件很棒的事情。 没有亲自使用过它(我必须自己发明轮子),但它得到了很好的评价。


它包括以下组件:

  • 用于自动生成精灵和内联图像的 API
  • 提供调用 API 的便捷方式的控件和帮助程序

第二个版本中添加的功能:

  • Web 表单的 CSS 链接控件(为用户的浏览器选择正确的 CSS 文件,但不显示图像)
  • 使用 App_Sprites 以外的自定义文件夹路径
  • 更改精灵图像的平铺方向
  • 将生成的 CSS 与用户自己的 CSS 合并

未来版本考虑的功能:

  • 自动选择最有效的精灵背景颜色
  • 自动缩小渲染 CSS编译
  • 针对 .NET 3.5 的

Ok finally something official...

Not clear yet if it'll make it into the core ASP.NET framework but here's a Microsoft codeplex project for csssprites :

http://aspnet.codeplex.com/releases/view/50869

if you like it - use it - or just like the idea then add a comment. I think this would be a great thing to have in the ASP.NET framework. Have not personally used it (I had to invent the wheel myself) but its got good reviews.


It includes the following components:

  • API for automatically generating sprites and inline images
  • Controls and helpers which provide a convenient way of calling into the API

Features Added in Second Release:

  • A CSS linking control for Web Forms (selects the proper CSS file for the user's browser, but does not display an image)
  • Using custom folder paths other than App_Sprites
  • Changing the tiling direction of sprite images
  • Merging the generated CSS with a user's own CSS

Features under consideration for future releases:

  • Automatically selecting the most efficient sprite background colour
  • Automatically minifying the rendered CSS
  • Compiling against .NET 3.5
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文