Minify compresses JS and CSS_html/css_WEB-ITnose
Minify compresses and reduces CSS and JS (Minify: removes spaces, carriage returns, etc.), and integrates multiple CSS and JS files into one file. Don't think that your large bandwidth doesn't warrant this kind of optimization. The more important reason for using it is file merging, not compression, but file consolidation, which can reduce the browser side from constantly issuing new connection requests. Just like an FTP server, multiple small files and one large file are time-consuming. Not the same.
Minify is written in PHP, project address http://code.google.com/p/minify/
Installation
1. Download the latest Minify then extracts it to the minify directory.
2. Copy the "min" directory to your DOCUMENT_ROOT.
Basic usage
Assume you have http://localhost/a.js, http://localhost /b.js two files. So now, you can use http://localhost/min/?f=a.js,b.js and see if the browser returns the result. Is it the content of the two js files of minify?
Attached is the README.txt in the min directory
Reference
The files in this directory contain default Minify settings, designed to simplify integrating your website. Minify will merge minified JavaScript or CSS files and perform HTTP compression and caching headers.
Recommended
It is recommended to modify config.php to set $min_cachePath to a PHP writable directory. This will improve performance.
GETTING STARTED
The fastest way to get started with Minify is to visit your website using the URI of the Minify Builder application: http://example.com/min/ builder/
Compress a single file For example, you want to serve this file:
http://example.com/wp-content/themes/default/default .css
Here is the "Minify URL" of the file:
http://example.com/min/?f=wp-content/themes/default/default.css
In other words , the "f" parameter is set to the target file from the WEB root path (no need for path /)". Since CSS files may contain relative URIs, Minify will automatically find them through the rewriting mechanism.
Merge multiple files into one file for download Separate each file name of the f parameter with ','
For example, there is the following CSS file:
http://example.com/scripts/ jquery-1.2.6.js
http://example.com/scripts/site.js
You can combine it with Minify:
http://example.com/min/?f=scripts /jquery-1.2.6.js,scripts/site.js
Simplified base path If the files you merge share the same parent directory, you can use the f parameter set by b The basic directory of parameters (also excluding leading or suffix / characters).
For example, the following two ways of writing have the same effect:
http://example.com/min/?f=scripts/jquery-1.2.6 .js,scripts/site.js,scripts/home.js
http://example.com/min/?b=scripts&f=jquery-1.2.6.js,site.js,home.js
Use MINIFY in Html In (X)HTML files, don’t forget to replace & with &
Specify allowed directories By default, Minify will not have any *.css/*.js files in the DOCUMENT_ROOT scope. If you want to restrict Minify's access to certain directories, set the
$min_serveOptions ['minApp'] ['allowDirs'] array in config.php. For example: to limit to /js and /themes/default directories, use:
Php code
- $min_serveOptions['minApp'][' allowDirs'] = array('//js', '//themes/default');
"Group": faster performance and better URL For best performance, edit the pre-specified file groups in groupsConfig.php, here is an example configuration:
Php code
- return array(
- 'js' => array('//js/Class.js', '//js/email.js')
- );
The result of the above pre-specified js is to merge the following files:
http://example.com/js/Class.js
http://example.com/js/email.js
Now, you can simplify the URL like this:
http://example.com/min/?g=js
Group: Specify files outside the document_root directory
in groupsConfig In the .php array, // points to DOCUMENT_ROOT, but you can also specify an absolute directory path from the system or a relative directory relative to document_root:
Php code
- return array(
- 'js' => array(
- '//js/file.js' // file within DOC_ROOT
- , '//../file.js' // file in parent directory of DOC_ROOT
- ,'C:/Users/Steve/file.js' // file anywhere on filesystem
- )
- );
Future Expiration HTTP header
Minify can send future (one year) Expiration HTTP header. To enable this feature, you must add a number to URIs (e.g. /min/?g=js&1234 or /min/f=file.js&1234) and change the number whenever the source file is modified. If you use SVN/CVS, you might consider using the revision number as this number.
If you use "group" to merge and compress your files, you can use the tool function Minify_groupUri() to get a "version" URI. For example:
Php code
- // Before making sure the min/lib directory is set to include_path
- // add /min/lib to your include_path first!
- require $_SERVER['DOCUMENT_ROOT'] . '/min/utils.php';
- $jsUri = Minify_groupUri('js');
- echo "";
Debug mode
In debug mode, Minify does not compress the file, but sends the merged file with line numbers. To enable this mode, set $min_allowDebugFlag to true in config.php and add "&debug=1" to your URIs.
For example: /min/?f=script1.js,script2.js&debug=1
Note: Comment-style string regular expressions may cause problems for this pattern.
For more questions, please visit http://groups.google.com/group/minify

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In Vue.js, the placeholder attribute specifies the placeholder text of the input element, which is displayed when the user has not entered content, provides input tips or examples, and improves form accessibility. Its usage is to set the placeholder attribute on the input element and customize the appearance using CSS. Best practices include being relevant to the input, being short and clear, avoiding default text, and considering accessibility.

I found that the compressed package downloaded from a download website will be larger than the original compressed package after decompression. The difference is tens of Kb for a small one and several dozen Mb for a large one. If it is uploaded to a cloud disk or paid space, it does not matter if the file is small. , if there are many files, the storage cost will be greatly increased. I studied it specifically and can learn from it if necessary. Compression level: 9-Extreme compression Dictionary size: 256 or 384, the more compressed the dictionary, the slower it is. The compression rate difference is larger before 256MB, and there is no difference in compression rate after 384MB. Word size: maximum 273 Parameters: f=BCJ2, test and add parameter compression rate will be higher

The span tag can add styles, attributes, or behaviors to text. It is used to: add styles, such as color and font size. Set attributes such as id, class, etc. Associated behaviors such as clicks, hovers, etc. Mark text for further processing or citation.

REM in CSS is a relative unit relative to the font size of the root element (html). It has the following characteristics: relative to the root element font size, not affected by the parent element. When the root element's font size changes, elements using REM will adjust accordingly. Can be used with any CSS property. Advantages of using REM include: Responsiveness: Keep text readable on different devices and screen sizes. Consistency: Make sure font sizes are consistent throughout your website. Scalability: Easily change the global font size by adjusting the root element font size.

There are five ways to introduce images in Vue: through URL, require function, static file, v-bind directive and CSS background image. Dynamic images can be handled in Vue's computed properties or listeners, and bundled tools can be used to optimize image loading. Make sure the path is correct otherwise a loading error will appear.

Nodes are entities in the JavaScript DOM that represent HTML elements. They represent a specific element in the page and can be used to access and manipulate that element. Common node types include element nodes, text nodes, comment nodes, and document nodes. Through DOM methods such as getElementById(), you can access nodes and operate on them, including modifying properties, adding/removing child nodes, inserting/replacing nodes, and cloning nodes. Node traversal helps navigate within the DOM structure. Nodes are useful for dynamically creating page content, event handling, animation, and data binding.

Browser plug-ins are usually written in the following languages: Front-end languages: JavaScript, HTML, CSS Back-end languages: C++, Rust, WebAssembly Other languages: Python, Java

1. First, open the settings icon in the lower left corner and click the settings option. 2. Then, find the CSS column in the jumped window. 3. Finally, change the drop-down option in the unknownproperties menu to the error button.
