JS/CSS壓縮工具(WEBmini) v1.1 中文免費(fèi)綠色版
879KB / 08-30
js壓縮工具(JSCompress) v5.9.855.0 中文安裝版
12.5MB / 05-21
js/css壓縮/美化工具(JsCssZip.exe) v3.0 綠色版
684KB / 07-02
JS與CSS批量壓縮/混淆/美化/格式化工具 v1.0 綠色免費(fèi)版
10.31MB / 12-24
js壓縮工具(JSCompress) v3.6.6401.0 中文綠色版
6.66MB / 04-01
ajaxmin.exe js壓縮工具 綠色版
550KB / 05-21
TBCompressor 基于YUICompressor v2.4.8的淘寶封裝的css和js壓縮
801KB / 06-30
基于jsmin的javascript批量壓縮軟件
1.22MB / 12-23
JS 批量壓縮工具包
789KB / 07-31
淘寶Compressor-2.4.2, JS&CSS壓縮軟件下載
803KB / 05-12
-
Git for windows(版本控制) v2.49.0 官方綠色便攜版 32/64位 開(kāi)發(fā)輔助 / 117MB
-
跨平臺(tái)的腳本語(yǔ)言 Python v3.13.1 for Linux 最新版 開(kāi)發(fā)輔助 / 27.9MB
-
GitHub桌面版GitHub Desktop v3.4.9.0 開(kāi)源漢化綠色免費(fèi)版 開(kāi)發(fā)輔助 / 115MB
-
SmartGit(圖形化GitGUI客戶端) v23.1.4.2 官方中文免費(fèi)便攜版 開(kāi)發(fā)輔助 / 102.7MB
-
SmartGit(Git版本控制管理工具) v23.1.4.2 官方安裝版 開(kāi)發(fā)輔助 / 123.5MB
-
機(jī)器數(shù)據(jù)管理與分析Splunk Enterprise v9.2.2 免費(fèi)版(附補(bǔ)丁) Wi 開(kāi)發(fā)輔助 / 516MB
-
-
TBCompressor 基于YUICompressor v2.4.8的淘寶封裝的css和js壓縮 開(kāi)發(fā)輔助 / 801KB
-
-
GraphicsGale v2.04.00 用來(lái)制作圖標(biāo)、動(dòng)畫(huà)等英文綠色免費(fèi)版 開(kāi)發(fā)輔助 / 1.29MB
詳情介紹
壓縮css和js是我們工作中經(jīng)常要處理的一件事,這里介紹的是一款基于YUICompressor,淘寶封裝的css和js壓縮工具TBCompressor.
TBCompressor的安裝很簡(jiǎn)單,點(diǎn)擊install.cmd就可以了,安裝后會(huì)在里的右鍵菜單里出現(xiàn)"Compress CSS or JS"選項(xiàng),需要壓縮文件時(shí)只需選取目標(biāo)文件然后右鍵點(diǎn)選"Compress CSS or JS"即刻.壓縮后的文件會(huì)自動(dòng)重命名.
這款js壓縮工具,是最好用的,jquery等也用這個(gè)壓縮,壓縮率高,不會(huì)出現(xiàn)在線壓縮工具那樣的,各種各樣的錯(cuò)誤。
好處就是:減少js的體積,減少調(diào)用時(shí)間,提高網(wǎng)頁(yè)執(zhí)行效率,如果js過(guò)大就會(huì)導(dǎo)致加載慢,而導(dǎo)致頁(yè)面的一些效果不能正??焖俚膱?zhí)行。
注意:這款軟件需要jdk支持,就是需要安裝jdk環(huán)境。
可以去官方下載 選擇Java SE Development Kit (JDK) JDK 6 Update **
Documentation
==============================================================================
YUI Compressor
==============================================================================
NAME
YUI Compressor - The Yahoo! JavaScript and CSS Compressor
SYNOPSIS
Usage: java -jar yuicompressor-x.y.z.jar [options] [input file]
Global Options
-h, --help Displays this information
--type <js|css> Specifies the type of the input file
--charset <charset> Read the input file using <charset>
--line-break <column> Insert a line break after the specified column number
-v, --verbose Display informational messages and warnings
-o <file> Place the output into <file>. Defaults to stdout.
JavaScript Options
--nomunge Minify only, do not obfuscate
--preserve-semi Preserve all semicolons
--disable-optimizations Disable all micro optimizations
DESCRIPTION
The YUI Compressor is a JavaScript compressor which, in addition to removing
comments and white-spaces, obfuscates local variables using the smallest
possible variable name. This obfuscation is safe, even when using constructs
such as 'eval' or 'with' (although the compression is not optimal is those
cases) Compared to jsmin, the average savings is around 20%.
The YUI Compressor is also able to safely compress CSS files. The decision
on which compressor is being used is made on the file extension (js or css)
GLOBAL OPTIONS
-h, --help
Prints help on how to use the YUI Compressor
--line-break
Some source control tools don't like files containing lines longer than,
say 8000 characters. The linebreak option is used in that case to split
long lines after a specific column. It can also be used to make the code
more readable, easier to debug (especially with the MS Script Debugger)
Specify 0 to get a line break after each semi-colon in JavaScript, and
after each rule in CSS.
--type js|css
The type of compressor (JavaScript or CSS) is chosen based on the
extension of the input file name (.js or .css) This option is required
if no input file has been specified. Otherwise, this option is only
required if the input file extension is neither 'js' nor 'css'.
--charset character-set
If a supported character set is specified, the YUI Compressor will use it
to read the input file. Otherwise, it will assume that the platform's
default character set is being used. The output file is encoded using
the same character set.
-o outfile
Place output in file outfile. If not specified, the YUI Compressor will
default to the standard output, which you can redirect to a file.
-v, --verbose
Display informational messages and warnings.
JAVASCRIPT ONLY OPTIONS
--nomunge
Minify only. Do not obfuscate local symbols.
--preserve-semi
Preserve unnecessary semicolons (such as right before a '}') This option
is useful when compressed code has to be run through JSLint (which is the
case of YUI for example)
--disable-optimizations
Disable all the built-in micro optimizations.
NOTES
+ If no input file is specified, it defaults to stdin.
+ The YUI Compressor requires Java version >= 1.4.
+ It is possible to prevent a local variable, nested function or function
argument from being obfuscated by using "hints". A hint is a string that
is located at the very beginning of a function body like so:
function fn (arg1, arg2, arg3) {
"arg2:nomunge, localVar:nomunge, nestedFn:nomunge";
...
var localVar;
...
function nestedFn () {
....
}
...
}
The hint itself disappears from the compressed file.
+ C-style comments starting with /*! are preserved. This is useful with
comments containing copyright/license information. For example:
/*!
* TERMS OF USE - EASING EQUATIONS
* Open source under the BSD License.
* Copyright 2001 Robert Penner All rights reserved.
*/
becomes:
/*
* TERMS OF USE - EASING EQUATIONS
* Open source under the BSD License.
* Copyright 2001 Robert Penner All rights reserved.
*/
下載地址
人氣軟件
VAX番茄助手Visual Assist X 10.9.2488 for VS2022 漢化破解版(
Regex Tester 正則表達(dá)式測(cè)試工具
pywin32 python2.7 32與64位打包
Companion.JS IE javascript 調(diào)試工具
phpCB php代碼格式化工具(附詳細(xì)配置方法)
phpnow asp 運(yùn)行插件
YUI Compressor 2.42 js css壓縮
JavaScript 代碼格式化軟件中文綠色版 (讓js代碼更容易閱讀)
Dreamweaver Cs4 jQuery自動(dòng)提示插件綠色版
Closure Compiler Google出品的JavaScript優(yōu)化器
相關(guān)文章
-
Xilinx Vitis Core Development Kit 2023.2 Update 2 完整特別版(含.lic許可文件)
Xilinx Vivado Design Suite破解版是領(lǐng)先的生產(chǎn)力設(shè)計(jì)套件,Vivado IP 集成器提供圖形化和基于 Tcl 的構(gòu)造校正設(shè)計(jì)開(kāi)發(fā)流程,歡迎需要的朋友下載使用...
-
Instant CSharp Premium(VB.NET/C#代碼轉(zhuǎn)換器) v24.2.8 中文免費(fèi)版 附安裝教程
Instant CSharp Premium 免費(fèi)版是一款專業(yè)的C#編程IDE(集成開(kāi)發(fā)環(huán)境),專為C#開(kāi)發(fā)人員設(shè)計(jì),它提供了一系列的功能和工具,幫助開(kāi)發(fā)人員更高效地編寫(xiě)、調(diào)試和部署C#應(yīng)用程序,...
-
Coder Technologies Coder(開(kāi)源云開(kāi)發(fā)環(huán)境CDE) v2.8.0 x64 免費(fèi)安裝版 附使用教程
Coder Technologies Coder是一個(gè)開(kāi)源云開(kāi)發(fā)環(huán)境 (CDE),您可以下載并托管在云中,在幾秒鐘內(nèi)部署一個(gè)解決方案,提供開(kāi)發(fā)人員所需的基礎(chǔ)設(shè)施、IDE、語(yǔ)言和工具,升級(jí)到企業(yè)版...
-
海為云組態(tài)軟件Haiwell Cloud SCADA v3.36.9.8 激活安裝版
海為云組態(tài)軟件是一款工業(yè)自動(dòng)化監(jiān)控管理軟件,此軟件可以幫助用戶對(duì)工作中使用的智能化設(shè)備進(jìn)行自動(dòng)監(jiān)控,戶在使用設(shè)備的時(shí)候只需要輸入對(duì)應(yīng)的命令就可以啟動(dòng)監(jiān)控功能,歡...
-
Radzen Blazor Studio v1.9.6 完美激活版
Radzen Blazor Studio 是一種桌面工具,它使 開(kāi)發(fā)人員 能夠創(chuàng)建漂亮的商業(yè) Blazor 應(yīng)用程序,歡迎需要的朋友下載使用...
-
GitHub Desktop桌面客戶端 v3.4.2 漢化安裝版
GitHub Desktop是github的桌面客戶端軟件,使用GitHub Desktop可以簡(jiǎn)化您的開(kāi)發(fā)工作流程,github desktop官方并未提供中文版本,特此分享漢化版...
下載聲明
☉ 解壓密碼:www.dbjr.com.cn 就是本站主域名,希望大家看清楚,[ 分享碼的獲取方法 ]可以參考這篇文章
☉ 推薦使用 [ 迅雷 ] 下載,使用 [ WinRAR v5 ] 以上版本解壓本站軟件。
☉ 如果這個(gè)軟件總是不能下載的請(qǐng)?jiān)谠u(píng)論中留言,我們會(huì)盡快修復(fù),謝謝!
☉ 下載本站資源,如果服務(wù)器暫不能下載請(qǐng)過(guò)一段時(shí)間重試!或者多試試幾個(gè)下載地址
☉ 如果遇到什么問(wèn)題,請(qǐng)?jiān)u論留言,我們定會(huì)解決問(wèn)題,謝謝大家支持!
☉ 本站提供的一些商業(yè)軟件是供學(xué)習(xí)研究之用,如用于商業(yè)用途,請(qǐng)購(gòu)買正版。
☉ 本站提供的YUI Compressor 2.42 js css壓縮資源來(lái)源互聯(lián)網(wǎng),版權(quán)歸該下載資源的合法擁有者所有。