search
HomeWeb Front-endHTML TutorialWeb Essentials之Bundling_html/css_WEB-ITnose

返回Web Essentials功能目录

本篇目录

  • 介绍
  • 样例文件
  • 已知行为

这篇要讲的是Bundling,我看很多人把它翻译为捆绑,如果你喜欢你也可以这么理解,我是不太习惯,我还是喜欢它为bundling,或者bundle。

Bundling允许我们组合和压缩相同类型的文件来提升网站的性能。

啥是bundle?

Web Essentials的bundle文件是用于组合和压缩相同类型的一组文件的一个食谱,它可以限制浏览器将要下载的数据量。

Web Essentials提供了两种bundling类型:

  1. .bundle:用于CSS和JS文件 对于CSS,会输出一个XML类型的bundle食谱文件,一个目标CSS文件和一个源代码的压缩版本(前提是在该食谱文件中打开了minify选项)。
  2. .sprite:用于图片文件(png,jpg和gif)。 它生成了一个sprite(很多人翻译为精灵)图片,对于background属性中的所有坐标都具有样例代码的CSS,具有保持相同background属性的混淆的LESS和SASS文件和一个自定义的映射文件(json)。

如何制造一个bundle呢?

创建一个bundle的步骤和所有类型文件的步骤是相同的:

  • 在解决方案浏览器上,选择你想bundle在一起的文件。
  • web Essentials 的上下文菜单中,选择 Create image sprite... 或者 Create CSS/JS bundle file ,取决于你的上下文。
  • 为该bundle文件起一个名字。

它如何工作?

基本上,有两种方法来更新bundled的资产(就是放在bundle中的资源文件):

  1. 更改原料,比如.js,css或者图片。
  2. 更新bundle的菜谱文件。

样例文件

我刚才已经创建了一个bundle文件,名字为是默认的MyBundle。我将刚才生成的XML文件内容放在下面。可以看到,生成的XML文件已经自己注释好了,只不过是英文的注释。

<?xml version="1.0" encoding="utf-8"?><bundle xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://vswebessentials.com/schemas/v1/bundle.xsd">  <settings>    <!--Determines if the bundle file should be automatically optimized after creation/update.-->    <minify>true</minify>    <!--Determine whether to generate/re-generate this bundle on building the solution.-->    <runOnBuild>false</runOnBuild>    <!--Use absolute path in the generated CSS files. By default, the URLs are relative to generated bundled CSS file.-->    <adjustRelativePaths>true</adjustRelativePaths>    <!--Specifies a custom subfolder to save files to. By default, compiled output will be placed in the same folder and nested under the original file.-->    <outputDirectory />  </settings>  <!--The order of the <file> elements determines the order of the files in the bundle.-->  <files>    <file>/Content/themes/base/jquery-ui.css</file>    <file>/Content/themes/base/jquery.ui.accordion.css</file>    <file>/Content/themes/base/jquery.ui.all.css</file>  </files></bundle>

下面我在创建一个sprite文件:

对应的XML类型的sprite文件内容如下:

<?xml version="1.0" encoding="utf-8"?><sprite xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://vswebessentials.com/schemas/v1/sprite.xsd">  <settings>    <!--Determines if the sprite image should be automatically optimized after creation/update.-->    <optimize>true</optimize>    <!--Determines the orientation of images to form this sprite. The value must be vertical or horizontal.-->    <orientation>vertical</orientation>    <!--The margin (in pixel) around and between the constituent images.-->    <margin>1</margin>    <!--File extension of sprite image.-->    <outputType>png</outputType>    <!--Determine whether to generate/re-generate this sprite on building the solution.-->    <runOnBuild>false</runOnBuild>    <!--Use full path to generate unique class or mixin name in CSS, LESS and SASS files. Consider disabling this if you want class names to be filename only.-->    <fullPathForIdentifierName>true</fullPathForIdentifierName>    <!--Use absolute path in the generated CSS-like files. By default, the URLs are relative to sprite image file (and the location of CSS, LESS and SCSS).-->    <useAbsoluteUrl>false</useAbsoluteUrl>    <!--Specifies a custom subfolder to save files to. By default, compiled output will be placed in the same folder and nested under the original file.-->    <outputDirectory />    <!--Specifies a custom subfolder to save CSS files to. By default, compiled output will be placed in the same folder and nested under the original file.-->    <outputDirectoryForCss />    <!--Specifies a custom subfolder to save LESS files to. By default, compiled output will be placed in the same folder and nested under the original file.-->    <outputDirectoryForLess />    <!--Specifies a custom subfolder to save SCSS files to. By default, compiled output will be placed in the same folder and nested under the original file.-->    <outputDirectoryForScss />  </settings>  <!--The order of the <file> elements determines the order of the images in the sprite.-->  <files>    <file>/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png</file>    <file>/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png</file>    <file>/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png</file>  </files></sprite>

已知行为

通用

当为一个目录生成一个bundle时,文件的列表来自文件系统,而不是该VS项目。因此,如果该目录包含的文件没有包括在项目中,它们也会包括在sprite中。为了阻止这种情况,必须手动选择所有的文件而不是该目录。

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

What is the viewport meta tag? Why is it important for responsive design?What is the viewport meta tag? Why is it important for responsive design?Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function