html和css页面自动缩小和放大,如何使用CSS和Javascript来缩小HTML?

编辑2(2017年2月22日):现在,最好的工具可以减少您的资产(而且通过添加装载程序和插件,还有更多的工具)肯定是

Webpack.

将所有.css文件移动到一个文件中并将其缩小的配置示例:

{

test: /\.css$/,use: [

{

loader: 'css-loader',options: {

minimize: true

}

}

]

}

编辑1(2014年9月16日):更好的是,现在你有任务赛跑者,如Gulp或Grunt.

Task runners are small applications that are used to automate many of

the time consuming,boring (but very important) tasks that you have to

do while developing a project. These include tasks such as running

tests,concatenating files,minification,and CSS preprocessing. By

simply creating a task file,you can instruct the task runner to

automatically take care of just about any development task you can

think of as you make changes to your files. It’s a very simple idea

that will save you a lot of time and allow you to stay focused on

development.

使用JavaScript连接和分类(和JSHint)的任务示例:

gulp.task('scripts',function() {

return gulp.src('src/scripts/**/*.js')

.pipe(jshint('.jshintrc'))

.pipe(jshint.reporter('default'))

.pipe(concat('main.js'))

.pipe(gulp.dest('dist/assets/js'))

.pipe(rename({suffix: '.min'}))

.pipe(uglify())

.pipe(gulp.dest('dist/assets/js'))

.pipe(notify({ message: 'Scripts task complete' }));

});

原来的答案(2012年7月19日):我建议HTML5 Boilerplate Build Script可以减少你的JS和CSS.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值