我正在尝试连接外部css和js文件(从我的index.html文件引用),然后将它们直接放入我的html文件中。我知道如何串联,然后将它们放入一个文件中。但还没有设法将它们直接写到我的index.html中。如果我使用注入,那么它不会从index.html获取引用。我需要为项目提供尽可能少的文件,因此我需要将所有代码粘贴到一个html文件中。有人对我有答案吗?
邮政编码:
gulp.task('useref', function(){
gulp.src(src/index.html)
.pipe(useref())
.pipe(gulpIf('*.js', uglify()))
.pipe(gulpIf('*.css', modifyCssUrls({
modify: function (url, filePath) {
var splitted = url.split('/');
return splitted[splitted.length - 1];
},
prepend: '',
append: ''
})))
.pipe(gulp.dest('./tmp'));
});
index.html,然后运行gulp
<!-- css -->
<!--build:css main.css -->
<link rel="stylesheet" type="text/css" href="../../../assets/css/shared.css">
<link rel="stylesheet" type="text/css" href="../assets/css/main.css">
<!-- endbuild -->
<!--build:js main.min.js -->
<script type="text/javascript" src="../../../assets/js/fontfaceobserver.js"></script>
<script type="text/javascript" src="../../../assets/js/SplitText.js"></script>
<!-- endbuild -->
运行gulp后的index.html
<!-- css -->
<link rel="stylesheet" href="main.css">
<script src="main.min.js"></script>
所以我希望它像这样将css实际粘贴到我的html文件中:
<!-- css -->
<style>
@font-face {
font-family: 'circular-pro-black';
src: url("circular-pro-black.woff2") format('woff2'),
url("circular-pro-black.woff") format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'circular-pro-bold';
src: url("circular-pro-bold.woff2") format('woff2'),
url("circular-pro-bold.woff") format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'anchor-bold';
src: url("anchor-bold.woff2") format('woff2'),
url("anchor-bold.woff") format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'anchor-semibold';
src: url("anchor-semibold.woff2") format('woff2'),
url("anchor-semibold.woff") format('woff');
font-weight: normal;
font-style: normal;
}
</style>
<script>
and the js content here
</script>