首页 技术 正文
技术 2022年11月12日
0 收藏 399 点赞 2,489 浏览 30131 个字

小屁活动使用 gulp+less

gulpfile.js

 var gulp = require('gulp'),
cssmin = require('gulp-minify-css'),
less = require('gulp-less'),
runSequence = require('run-sequence'),
rename = require("gulp-rename");
changed = require('gulp-changed');
autoprefixer=require("gulp-autoprefixer");
spriter=require('gulp-css-spriter');
livereload = require('gulp-livereload');
var sourcemaps = require('gulp-sourcemaps');
var chmod = require('gulp-chmod');
var srcPath = "./src/";
var destPath="./dest/";
var cssminconfig={
compatibility: "ie6,ie7,ie8,+selectors.ie7Hack,+properties.iePrefixHack"
};
gulp.task('cssSprite', function () {
return gulp.src(destPath+'style/*.min.css')
.pipe(spriter({
// 生成的spriter的位置
'spriteSheet': 'dest/style/img_d/imgs.png',
// 生成样式文件图片引用地址的路径
// 如下将生产:backgound:url(../images/sprite20324232.png)
'pathToSpriteSheetFromCSS': 'img_d/imgs.png'
}))
//产出路径
.pipe(cssmin(cssminconfig))
.pipe(gulp.dest('dest/style'));
});
gulp.task('less', function () {
var _pipe=gulp.src(srcPath+'style/*.less')
.pipe(less({
sourceMap: true
}))
.pipe(autoprefixer())
.pipe(chmod(777))
.pipe(sourcemaps.init())
.pipe(sourcemaps.write())
.pipe(gulp.dest(destPath+'style')); _pipe=_pipe.pipe(changed(destPath)).pipe(cssmin(cssminconfig))
.pipe(rename(function (path) {
console.log(path);
path.basename += '.min';
})) return _pipe.pipe(gulp.dest(destPath+'style'))
})
gulp.task("resource",function(){
return gulp.src([srcPath+"**/*.{png,jpg,html,mp3,mp4,gif,flv,swf}"]).pipe(changed(destPath)).pipe(gulp.dest(destPath));
}); gulp.task("js", function() {
var _pipe= gulp.src(srcPath + "**/*.js").pipe(changed(destPath))
if(process.env.prod){
_pipe=_pipe.pipe(uglify(uglifyConfig));
}
return _pipe.pipe(gulp.dest(destPath));
});
gulp.task("reload", function() {
livereload.reload();
});
gulp.task('testWatch', function () {
return gulp.watch([srcPath+"**/*.{js,less}"],["build"])
}); gulp.task('default',['less','resource','js','testWatch']); //定义默认任务 gulp.task("build",function(cb){
runSequence(["resource","less","js","reload"],cb)
}); //gulp.task(name[, deps], fn) 定义任务 name:任务名称 deps:依赖任务名称 fn:回调函数
//gulp.src(globs[, options]) 执行任务处理的文件 globs:处理的文件路径(字符串或者字符串数组)
//gulp.dest(path[, options]) 处理完后文件生成路径

mixins.less

 @charset "utf-8";
/* CSS Document */
@f1:'microsoft yahei',Simhei;
.wh(@w:0,@h:0){
width:@w;height:@h;
}
.abstl(@top:0;@left:0){
position: absolute;top:@top;left:@left;
}
.abstr(@top:0,@right:0){
position: absolute;top:@top;right:@right;
}
.absbl(@bottom:0,@left:0){
position: absolute;bottom:@bottom;left:@left;
}
.absbr(@bottom:0,@right:0){
position: absolute;bottom:@bottom;right:@right;
}
.commonbg(@x:0,@y:0){
background: url(img_d/common.png) no-repeat @x @y;
}
.toh(){
white-space:nowrap;
text-overflow:ellipsis;
-o-text-overflow:ellipsis;
overflow: hidden;
}
.wbk(){
word-break: break-all;
word-wrap: break-word;
}

marketNew gulp+scss

gulpfile.js

 var gulp = require("gulp");
var babel = require("gulp-babel");
var autoprefixer = require("gulp-autoprefixer");
var sass = require('gulp-ruby-sass');
var concat = require("gulp-concat");
var cssmin = require('gulp-minify-css');
var sourcemaps = require('gulp-sourcemaps');
var uglify = require('gulp-uglify');
var del = require('del');
var merge = require("merge-stream");
var rev = require("gulp-rev");
var replace = require("zell-grr");
var eslint = require('gulp-eslint');
var runSequence = require('run-sequence');
var through2 = require('through2');
var rename = require('gulp-rename');
var zellsprite=require("zellsprite");
var browserSync,reload, filter,needEmittingSassError=false,needsassSourcemap=true,chmod = require('gulp-chmod');
if (process.env.zellenv) {
filter = require("gulp-filter");
browserSync = require('browser-sync').create();
reload = browserSync.reload;
}
if(process.env.prod){
needsassSourcemap=false;
needEmittingSassError=true;
}
var srcPath = "./src/";
var destPath = "./dest/";
var commonSrcPath = "../common/src/";
var path = require("path")
var DEBUG = false;
var cssminConfig = {
compatibility: "ie6,ie7,ie8,+selectors.ie7Hack,+properties.iePrefixHack",
roundingPrecision:-1
};
var uglifyConfig = {
warnings: false,
output: {
ascii_only: true,
comments: /author|copyright|license/,
},
compress: {
global_defs: {
DEBUG: DEBUG
}
}
};
if(process.env.zellenv){
browserSync.emitter.on("client:connected",function(){
require("dns").lookup("www.100bt.com",function(e,address){
if(address.search("173")>-1){
browserSync.notify("你在测试环境",1000);
return false;
}
if(address.search("127")>-1){
browserSync.notify("你在本地环境",1000);
return false;
}
browserSync.notify("你在未知的可能是线上的环境因为www.100bt.com->"+address,1000);
})
})
}
del.sync(destPath + "*");
zellsprite.default(gulp,{src:"./spritesrc",dest:"./spritedest",templateFile:"./css.hb"});
gulp.task("sass", function() {
var _pipe=sass([srcPath + "**/*.scss"], {
sourcemap: false,
sourcemap: needsassSourcemap,
emitCompileError: needEmittingSassError
}).pipe(autoprefixer());
// if(process.env.zellenv){
_pipe=_pipe.pipe(chmod(777));
// } if(process.env.prod){
_pipe=_pipe.pipe(cssmin(cssminConfig));
}
if(!process.env.prod){
_pipe=_pipe.pipe(sourcemaps.write());
}
_pipe=_pipe.pipe(gulp.dest(destPath));
if (process.env.zellenv) {
_pipe=_pipe.pipe(filter('**/*.css')) // Filtering stream to only css files
.pipe(reload({
stream: true
}));
}
return _pipe;
}); gulp.task("css", function() {
var _pipe=gulp.src(srcPath + "**/*.css")
.pipe(autoprefixer())
if(process.env.prod){
_pipe=_pipe.pipe(cssmin(cssminConfig));
}
return _pipe.pipe(gulp.dest(destPath));
});
gulp.task("lintjs",function(){
var _pipe= gulp.src(srcPath + "**/*.js")
_pipe=_pipe.pipe(eslint()).pipe(eslint.format()).pipe(eslint.failAfterError());
return _pipe;
})
gulp.task("lintes",function(){
var _pipe= gulp.src(srcPath + "**/*.es")
_pipe=_pipe.pipe(eslint({
"parserOptions": {
"ecmaVersion": 6
}
})).pipe(eslint.format()).pipe(eslint.failAfterError());
return _pipe;
})
gulp.task("js",["lintjs"], function() {
var _pipe= gulp.src(srcPath + "**/*.js")
_pipe=_pipe.pipe(chmod(777));
if(process.env.prod){
_pipe=_pipe.pipe(uglify(uglifyConfig));
}
return _pipe.pipe(gulp.dest(destPath));
}); gulp.task("babel",["lintes"], function() {
var _pipe= gulp.src(srcPath + "**/*.es")
.pipe(babel())
// if(process.env.zellenv){
_pipe=_pipe.pipe(chmod(777));
// }
if(process.env.prod){
_pipe=_pipe.pipe(uglify(uglifyConfig));
}
return _pipe.pipe(gulp.dest(destPath));
});
var i=0;
gulp.task("rev", ["makeRevMap","makeLocalRevMap"], function() {
var mani = gulp.src("./rev-manifest.json");
return gulp.src(destPath + "/**/*.css")
.pipe(replace({
manifest: mani,
modifyUnreved: function(name, base) {
var a = path.relative(path.dirname(base), path.resolve("..", name));
a = a.replace(/\\/g, "/");
return a;
},
modifyReved: function(name, unrevName, base) {
var rev = path.basename(name).split("-").pop().split(".")[0];
var a = path.relative(path.dirname(base), path.resolve("..", unrevName)) + "?" + rev;
a = a.replace(/\\/g, "/");
return a;
},
dosthwithContent:function(contents,rename,file){
var reg=new RegExp('(?:\\\('+"http://resource.a0bi.com/marketnew/"+rename.unreved+'\\\))',"img");
var rev = path.basename(rename.reved).split("-").pop().split(".")[0];
var _contents=contents.replace(reg,"("+"http://resource.a0bi.com/marketnew/"+rename.unreved+"?"+rev+")");
reg=new RegExp('(?:([\'"])'+"http://resource.a0bi.com/marketnew/"+rename.unreved+'\\1)',"img");
_contents=_contents.replace(reg,"http://resource.a0bi.com/marketnew/"+rename.unreved+"?"+rev);
return _contents;
}
}))
.pipe(gulp.dest(destPath));
}); gulp.task("makeRevMap", function() {
return gulp.src("../*/dest/**/*.{html,css,js,png,jpg,swf,mp4,mp3,flv,gif,jpeg}")
.pipe(rev())
.pipe(rev.manifest())
.pipe(gulp.dest("./"));
}); gulp.task("makeLocalRevMap",function(){
return gulp.src(destPath + "/**/*.{html,css,js,png,jpg,swf,mp4,mp3,flv,gif,jpeg}")
.pipe(rev())
.pipe(rev.manifest())
.pipe(rename("revmanifestjs.js"))
.pipe(through2.obj(function(file, encoding, done) {
var content = "var __revmanifestJS=" + String(file.contents);
file.contents = new Buffer(content);
this.push(file);
done();
}))
.pipe(gulp.dest("./"));
}); gulp.task("resource", function() {
return gulp.src([srcPath + "**/*.{png,jpg,html,mp3,mp4,gif,flv,swf}"]).pipe(gulp.dest(destPath));
});
gulp.task('browser-sync', function() {
browserSync.init({
proxy: "http://www.100bt.com/",
// proxy: "http://resource.a0bi.com/",
online: false,
// open:"ui"
notify:true,
open:false,
rewriteRules: [{
match: /localhost:3000/g,
fn: function(match) {
return 'bs.100bt.com';
}
}]
});
});
gulp.task("watches",function(){
return gulp.watch([srcPath.replace(/^\.\//, "") + "**/*.es"], ["babel"],reload);
});
gulp.task("watchscss",function(){
return gulp.watch([srcPath.replace(/^\.\//, "") + "**/*.scss"], ["sass"]);
});
gulp.task("watchjsp",function(){
return gulp.watch(["E:/projectA/source/gw/WebRoot/**/*.jsp"], browserSync.reload);
})
gulp.task("watch", function() {
if (process.env.zellenv) {
// gulp.watch(["E:/projectA/source/gw/WebRoot/**/*.jsp"], browserSync.reload);
}
// gulp.watch("spriteSrc/**/*.{png,jpg}",["buildSprite"]);
return gulp.watch([srcPath.replace(/^\.\//, "") + "**/*.{scss,es}"], ["buildwithoutSprite"]);
}); gulp.task("copySprite",function(){
return gulp.src("spritedest/**/*.{png,jpg}").pipe(gulp.dest(destPath+"scss/spritedest/"));
});
gulp.task("buildSprite",function(cb){
runSequence("sprite","copySprite",cb);
});
console.log("sd")
gulp.task("default", function(cb) {
if (process.env.zellenv) {
console.log("helloZellEnv");
runSequence("build", "watches", "watchscss","watchjsp","browser-sync", cb);
} else {
runSequence("build", "watches","watchscss", cb);
}
}); gulp.task("concatConfig", function() {
var _pipe=gulp.src(['./revmanifestjs.js', "./dest/es/config.js","../common/dest/es/_beforerequire.js"])
.pipe(concat("rev-config.js"));
if(process.env.prod){
_pipe=_pipe.pipe(uglify(uglifyConfig))
}
return _pipe.pipe(gulp.dest("./dest/es/"));
}); gulp.task("buildwithoutSprite",function(cb){
del.sync(destPath + "*");
if(process.env.prod){
runSequence("copySprite",["sass", "babel", "resource", "js", "css"], "rev", "concatConfig", cb);
}else{
/*本地环境去掉耗时的而无太大用途的公共资源md
5和加版本号的操作*/
runSequence("copySprite",["sass", "babel", "resource", "js", "css"], "makeLocalRevMap", "concatConfig", cb);
}
}); gulp.task("build", function(cb) {
del.sync(destPath + "*");
if(process.env.prod){
runSequence('buildSprite',["sass", "babel", "resource", "js", "css"], "rev", "concatConfig", cb);
}else{
/*本地环境去掉耗时的而无太大用途的公共资源md
5和加版本号的操作*/
runSequence('buildSprite',["sass", "babel", "resource", "js", "css"], "makeLocalRevMap", "concatConfig", cb);
}
});

mixins.scss

 @charset "utf-8";
// __
// /\ \__
// ____ __ _____ __ _ __ __ \ \ ,_\ __
// /',__\ /'__`\/\ '__`\ /'__`\ /\`'__\/'__`\ \ \ \/ /'__`\
// /\__, `\/\ __/\ \ \L\ \/\ \L\.\_\ \ \//\ \L\.\_\ \ \_/\ __/
// \/\____/\ \____\\ \ ,__/\ \__/.\_\\ \_\\ \__/.\_\\ \__\ \____\
// \/___/ \/____/ \ \ \/ \/__/\/_/ \/_/ \/__/\/_/ \/__/\/____/ @mixin when($alias) {
@if $alias == mobile {
@media (max-width: $mobileBreakPointWidth) {
@content;
}
}
@if $alias == pc {
@media (min-width: ($mobileBreakPointWidth + 1px)) {
@warn "这个when(pc)接口已经废弃请勿使用,在base.jsp里面实现了在html里面加class的操作,可以考虑使用.html--inpc .html--inmobile实现相关功能";
@content;
}
}
@if $alias == pcnew{
@if &{//存在上下文就unshift
@include unshiftClass(".html--inpc"){
@content;
};
} @else{//否则是直接套一个类在外面
.html--inpc {
@content;
}
}
}
@if $alias == pcmain {
@media (max-width: $pcMainWidth) {
@content;
}
}
} // __
// /\ \__
// ____ __ _____ __ _ __ __ \ \ ,_\ __
// /',__\ /'__`\/\ '__`\ /'__`\ /\`'__\/'__`\ \ \ \/ /'__`\
// /\__, `\/\ __/\ \ \L\ \/\ \L\.\_\ \ \//\ \L\.\_\ \ \_/\ __/
// \/\____/\ \____\\ \ ,__/\ \__/.\_\\ \_\\ \__/.\_\\ \__\ \____\
// \/___/ \/____/ \ \ \/ \/__/\/_/ \/_/ \/__/\/_/ \/__/\/____/
//2个等级的字体 @mixin setfontfamily($type) {
@if $type == 1 {
font-family: $fontFamily_normal;
} @if $type == 2 {
font-family: $fontFamily_special;
}
} @mixin sethlhSame($height){
height:$height;
line-height:$height;
} @mixin sethlh($type){
@if $type == 1 {
height:$fontSize_small * 2;
line-height:$fontSize_small * 2;
@include when(mobile) {
height:$fontSize_smallrem * 2;
line-height:$fontSize_smallrem * 2;
}
} @if $type == 2 {
height: $fontSize_normal * 2;
line-height: $fontSize_normal * 2; @include when(mobile) {
height: $fontSize_normalrem * 2;
line-height: $fontSize_normalrem * 2;
}
} @if $type == 3 {
height: $fontSize_normal2 * 2;
line-height: $fontSize_normal2 * 2; @include when(mobile) {
height: $fontSize_normal2rem * 2;
line-height: $fontSize_normal2rem * 2;
}
} @if $type == 4 {
height: $fontSize_title_normal * 2;
line-height: $fontSize_title_normal * 2; @include when(mobile) {
height: $fontSize_title_normalrem * 2;
line-height: $fontSize_title_normalrem * 2;
}
} @if $type == 5 {
height: $fontSize_title_large * 2;
line-height: $fontSize_title_large * 2; @include when(mobile) {
height: $fontSize_title_largerem * 2;
line-height: $fontSize_title_largerem * 2;
}
}
} //5个等级的字体大小
@mixin setfontsize($type,$force:false) {
@if $type == 1 {
font-size: #{$fontSize_small}(if($force,#{"!important"},#{""})); @include when(mobile) {
font-size: #{$fontSize_small}(if($force,#{"!important"},#{""}));
font-size: #{$fontSize_smallrem}(if($force,#{"!important"},#{""}));
}
} @if $type == 2 {
font-size: #{$fontSize_normal}(if($force,#{"!important"},#{""})); @include when(mobile) {
font-size: #{$fontSize_normal}(if($force,#{"!important"},#{""}));
font-size: #{$fontSize_normalrem}(if($force,#{"!important"},#{""}));
}
} @if $type == 3 {
font-size: #{$fontSize_normal2}(if($force,#{"!important"},#{""})); @include when(mobile) {
font-size: #{$fontSize_normal2}(if($force,#{"!important"},#{""}));
font-size: #{$fontSize_normal2rem}(if($force,#{"!important"},#{""}));
}
} @if $type == 4 {
font-size: #{$fontSize_title_normal}(if($force,#{"!important"},#{""})); @include when(mobile) {
font-size: #{$fontSize_title_normal}(if($force,#{"!important"},#{""}));
font-size: #{$fontSize_title_normalrem}(if($force,#{"!important"},#{""}));
}
} @if $type == 5 {
font-size: #{$fontSize_title_large}(if($force,#{"!important"},#{""})); @include when(mobile) {
font-size: #{$fontSize_title_large}(if($force,#{"!important"},#{""}));
font-size: #{$fontSize_title_largerem}(if($force,#{"!important"},#{""}));
}
}
} // __
// /\ \__
// ____ __ _____ __ _ __ __ \ \ ,_\ __
// /',__\ /'__`\/\ '__`\ /'__`\ /\`'__\/'__`\ \ \ \/ /'__`\
// /\__, `\/\ __/\ \ \L\ \/\ \L\.\_\ \ \//\ \L\.\_\ \ \_/\ __/
// \/\____/\ \____\\ \ ,__/\ \__/.\_\\ \_\\ \__/.\_\\ \__\ \____\
// \/___/ \/____/ \ \ \/ \/__/\/_/ \/_/ \/__/\/_/ \/__/\/____/ @mixin toe($isscroll:false) {
//文字省略?
overflow: hidden !important;
@if $isscroll==true {overflow-x: scroll !important;}
white-space: nowrap !important;
text-overflow: ellipsis !important;
} @mixin toeline($linenumb:1) {
display:block;
overflow: hidden !important;
text-overflow: ellipsis !important;
-webkit-line-clamp: $linenumb;
display: -webkit-box;
-webkit-box-orient: vertical;
}
// __
// /\ \__
// ____ __ _____ __ _ __ __ \ \ ,_\ __
// /',__\ /'__`\/\ '__`\ /'__`\ /\`'__\/'__`\ \ \ \/ /'__`\
// /\__, `\/\ __/\ \ \L\ \/\ \L\.\_\ \ \//\ \L\.\_\ \ \_/\ __/
// \/\____/\ \____\\ \ ,__/\ \__/.\_\\ \_\\ \__/.\_\\ \__\ \____\
// \/___/ \/____/ \ \ \/ \/__/\/_/ \/_/ \/__/\/_/ \/__/\/____/ @mixin textCenter {
//文字居中
text-align: center !important;
} // __
// /\ \__
// ____ __ _____ __ _ __ __ \ \ ,_\ __
// /',__\ /'__`\/\ '__`\ /'__`\ /\`'__\/'__`\ \ \ \/ /'__`\
// /\__, `\/\ __/\ \ \L\ \/\ \L\.\_\ \ \//\ \L\.\_\ \ \_/\ __/
// \/\____/\ \____\\ \ ,__/\ \__/.\_\\ \_\\ \__/.\_\\ \__\ \____\
// \/___/ \/____/ \ \ \/ \/__/\/_/ \/_/ \/__/\/_/ \/__/\/____/ @mixin blockCenter {
//块居?
margin-left: auto !important;
margin-right: auto !important;
} // __
// /\ \__
// ____ __ _____ __ _ __ __ \ \ ,_\ __
// /',__\ /'__`\/\ '__`\ /'__`\ /\`'__\/'__`\ \ \ \/ /'__`\
// /\__, `\/\ __/\ \ \L\ \/\ \L\.\_\ \ \//\ \L\.\_\ \ \_/\ __/
// \/\____/\ \____\\ \ ,__/\ \__/.\_\\ \_\\ \__/.\_\\ \__\ \____\
// \/___/ \/____/ \ \ \/ \/__/\/_/ \/_/ \/__/\/_/ \/__/\/____/ @mixin siteColorConfig {
@include when(mobile){
::-webkit-scrollbar-track-piece{
background-color:#fff;
-webkit-border-radius:;
}
::-webkit-scrollbar{
width:0px;
height:0px;
}
::-webkit-scrollbar-thumb{
height:1px;
background-color:#999;
-webkit-border-radius:7px;
outline:2px solid #fff;
outline-offset:-2px;
border: 2px solid #fff;
}
};
::selection {
background: $bgc_selection;
color: $color_selectioin;
} //站点通用配置
//链接颜色
html{background-color: #fff;}
*{
outline:none;
border:none;
}
a { color: $color_link;
text-decoration: none;
&:hover {
color: $color_link__Hover;
text-decoration: underline;
}
} ul, ol, dl {
padding:;
} li {
list-style: none;
} //全局字体和行高设?
html {
line-height:;
font-family: $fontFamily_normal; @include setfontsize(2);
}
.justPC{
@include when(mobile){
display: none!important;
};
} .justMobileB{
@include when(pcnew){
display: none!important;
};
@include when(mobile){
display: block;
};
} .justMobileIB{
@include when(pcnew){
display: none!important;
};
@include when(mobile){
display: inline-block;
};
}
.justMobileI{
@include when(pcnew){
display: none!important;
};
@include when(mobile){
display:inline;
};
}
} // __
// /\ \__
// ____ __ _____ __ _ __ __ \ \ ,_\ __
// /',__\ /'__`\/\ '__`\ /'__`\ /\`'__\/'__`\ \ \ \/ /'__`\
// /\__, `\/\ __/\ \ \L\ \/\ \L\.\_\ \ \//\ \L\.\_\ \ \_/\ __/
// \/\____/\ \____\\ \ ,__/\ \__/.\_\\ \_\\ \__/.\_\\ \__\ \____\
// \/___/ \/____/ \ \ \/ \/__/\/_/ \/_/ \/__/\/_/ \/__/\/____/ @mixin layout-w-1-2 {
width: percentage(1 / 2);
box-sizing: border-box;
} @mixin layout-w-1-3 {
width: percentage(1 / 3);
box-sizing: border-box;
} @mixin layout-w-2-3 {
width: percentage(2 / 3);
box-sizing: border-box;
} @mixin layout-w-1-4 {
width: percentage(1 / 4);
box-sizing: border-box;
} @mixin layout-w-3-4 {
width: percentage(3 / 4);
box-sizing: border-box;
} @mixin layout-w-1-5 {
width: percentage(1 / 5);
box-sizing: border-box;
} @mixin layout-w-2-5 {
width: percentage(2 / 5);
box-sizing: border-box;
} @mixin layout-w-3-5 {
width: percentage(3 / 5);
box-sizing: border-box;
} @mixin layout-w-4-5 {
width: percentage(4 / 5);
box-sizing: border-box;
}
@mixin layout-w-1-6 {
width: percentage(1 / 6);
box-sizing: border-box;
}
@mixin layout-w-1-7 {
width: percentage(1 / 7);
box-sizing: border-box;
}
@mixin layout-w-2-7 {
width: percentage(2 / 7);
box-sizing: border-box;
}
@mixin layout-w-3-7 {
width: percentage(3 / 7);
box-sizing: border-box;
}
@mixin layout-w-2-9 {
width: percentage(2 / 9);
box-sizing: border-box;
} // __
// /\ \__
// ____ __ _____ __ _ __ __ \ \ ,_\ __
// /',__\ /'__`\/\ '__`\ /'__`\ /\`'__\/'__`\ \ \ \/ /'__`\
// /\__, `\/\ __/\ \ \L\ \/\ \L\.\_\ \ \//\ \L\.\_\ \ \_/\ __/
// \/\____/\ \____\\ \ ,__/\ \__/.\_\\ \_\\ \__/.\_\\ \__\ \____\
// \/___/ \/____/ \ \ \/ \/__/\/_/ \/_/ \/__/\/_/ \/__/\/____/ //这个可以这样?
// <div class="ct-container2">容器
// <span class="ct-content">!!!!这个必须是span!!!!
// <div class="maxwidth400"这个必须是inlineblock如果要自动水平居中的?<h1>Some text</h1><p>But he stole up to us again, and suddenly clapping his hand on my shoulder, said?Did ye see anything looking like men going towards that ship a while ago?"</p></div>
// </span><b class="ct-faker"></b>这个必须写出?
// </div>
//.ct-container2{@include center-tablecelinline(800,400)}
//但是如果内容大过一屏的话就只能在大过一屏的大内容块里面居中所以更加通用的弹窗用不了这个东西
@mixin center-tablecellinline($width, $height) {
& {
width: if(unitless($width), #{$width}px, $width);
height: if(unitless($height), #{$height}px, $height);
display: table;
text-align: center; .ct-content {
display: table-cell;
vertical-align: middle;
*display: inline-block;
} .ct-faker {
display: inline-block;
height: 100%;
vertical-align: middle;
}
}
} // __
// /\ \__
// ____ __ _____ __ _ __ __ \ \ ,_\ __
// /',__\ /'__`\/\ '__`\ /'__`\ /\`'__\/'__`\ \ \ \/ /'__`\
// /\__, `\/\ __/\ \ \L\ \/\ \L\.\_\ \ \//\ \L\.\_\ \ \_/\ __/
// \/\____/\ \____\\ \ ,__/\ \__/.\_\\ \_\\ \__/.\_\\ \__\ \____\
// \/___/ \/____/ \ \ \/ \/__/\/_/ \/_/ \/__/\/_/ \/__/\/____/ @mixin bgrgba($args...) {
@if type-of(nth($args, 1)) == "color" {
@at-root{
.btbuild_rgba &{
background-color: rgba(nth($args, 1), nth($args, 2));
}
.btbuild_no-rgba &{
filter: progid:DXImageTransform.Microsoft.gradient(enabled='true',startcolorstr=#{ie-hex-str(rgba(nth($args, 1), nth($args, 2)))},endcolorstr=#{ie-hex-str(rgba(nth($args, 1), nth($args, 2)))});
}
}
} @if type-of(nth($args, 1)) == "number" {
@at-root{
.btbuild_rgba &{
background-color: rgba(nth($args, 1), nth($args, 2), nth($args, 3), nth($args, 4));
}
.btbuild_no-rgba &{
filter: progid:DXImageTransform.Microsoft.gradient(enabled='true',startcolorstr=#{ie-hex-str(rgba(nth($args, 1), nth($args, 2), nth($args, 3), nth($args, 4)))},endcolorstr=#{ie-hex-str(rgba(nth($args, 1), nth($args, 2), nth($args, 3), nth($args, 4)))});
}
}
}
} // __
// /\ \__
// ____ __ _____ __ _ __ __ \ \ ,_\ __
// /',__\ /'__`\/\ '__`\ /'__`\ /\`'__\/'__`\ \ \ \/ /'__`\
// /\__, `\/\ __/\ \ \L\ \/\ \L\.\_\ \ \//\ \L\.\_\ \ \_/\ __/
// \/\____/\ \____\\ \ ,__/\ \__/.\_\\ \_\\ \__/.\_\\ \__\ \____\
// \/___/ \/____/ \ \ \/ \/__/\/_/ \/_/ \/__/\/_/ \/__/\/____/ @mixin float($side) {
float: unquote($side);
display: inline-block;
} // __
// /\ \__
// ____ __ _____ __ _ __ __ \ \ ,_\ __
// /',__\ /'__`\/\ '__`\ /'__`\ /\`'__\/'__`\ \ \ \/ /'__`\
// /\__, `\/\ __/\ \ \L\ \/\ \L\.\_\ \ \//\ \L\.\_\ \ \_/\ __/
// \/\____/\ \____\\ \ ,__/\ \__/.\_\\ \_\\ \__/.\_\\ \__\ \____\
// \/___/ \/____/ \ \ \/ \/__/\/_/ \/_/ \/__/\/_/ \/__/\/____/ @mixin clearfix {
display: block;
*zoom:; &:after {
content: "\20";
display: block;
height:;
clear: both;
visibility: hidden;
overflow: hidden;
}
} // __
// /\ \__
// ____ __ _____ __ _ __ __ \ \ ,_\ __
// /',__\ /'__`\/\ '__`\ /'__`\ /\`'__\/'__`\ \ \ \/ /'__`\
// /\__, `\/\ __/\ \ \L\ \/\ \L\.\_\ \ \//\ \L\.\_\ \ \_/\ __/
// \/\____/\ \____\\ \ ,__/\ \__/.\_\\ \_\\ \__/.\_\\ \__\ \____\
// \/___/ \/____/ \ \ \/ \/__/\/_/ \/_/ \/__/\/_/ \/__/\/____/ @mixin opacity($opacity) {
opacity: $opacity;
filter: alpha(opacity = $opacity * 100);
} // __
// /\ \__
// ____ __ _____ __ _ __ __ \ \ ,_\ __
// /',__\ /'__`\/\ '__`\ /'__`\ /\`'__\/'__`\ \ \ \/ /'__`\
// /\__, `\/\ __/\ \ \L\ \/\ \L\.\_\ \ \//\ \L\.\_\ \ \_/\ __/
// \/\____/\ \____\\ \ ,__/\ \__/.\_\\ \_\\ \__/.\_\\ \__\ \____\
// \/___/ \/____/ \ \ \/ \/__/\/_/ \/_/ \/__/\/_/ \/__/\/____/ @mixin min-height($height) {
min-height: $height;
height: auto !important;
_height: $height;
} @mixin min-width($width) {
min-width: $width;
width: auto !important;
_width: $width;
} @mixin max-height($height) {
max-height: $height;
height: auto !important;
_height: $height;
} @mixin max-width($width) {
max-width: $width;
width: auto !important;
_width: $width;
} // __
// /\ \__
// ____ __ _____ __ _ __ __ \ \ ,_\ __
// /',__\ /'__`\/\ '__`\ /'__`\ /\`'__\/'__`\ \ \ \/ /'__`\
// /\__, `\/\ __/\ \ \L\ \/\ \L\.\_\ \ \//\ \L\.\_\ \ \_/\ __/
// \/\____/\ \____\\ \ ,__/\ \__/.\_\\ \_\\ \__/.\_\\ \__\ \____\
// \/___/ \/____/ \ \ \/ \/__/\/_/ \/_/ \/__/\/_/ \/__/\/____/ // div.logo {
// background: url("logo.png") no-repeat;
// @include image-2x("logo2x.png", 100px, 25px);
// } // outputing // div.logo {
// background: url("logo.png") no-repeat;
// }
// @media (min--moz-device-pixel-ratio: 1.3),
// (-o-min-device-pixel-ratio: 2.6 / 2),
// (-webkit-min-device-pixel-ratio: 1.3),
// (min-device-pixel-ratio: 1.3),
// (min-resolution: 1.3dppx) {
// div.logo {
// background-image: url("logo2x.png");
// background-size: 100px 25px;
// }
// }
@mixin image-2x($image, $width, $height) {
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
/* on retina, use image that's scaled by 2 */
background-image: url($image);
background-size: $width $height;
}
} // .pop {
// background-color: red;
// position: relative;
// float: left;
// padding: 20px; // .hello {
// top: -8px; // @include triangle(up, 8px, red, white);
// }
// } // <div class="pop"><div class="hello"></div>hellomynameis</div> @mixin triangle($direction, $size: 6px, $color: #222, $color2: transparent) {
content: '';
display: block;
position: absolute;
height:;
width:;
overflow: hidden;
border:;
@if $direction == "up" {
border-bottom: $size solid $color;
border-left: (3 / 4 * $size) solid $color2;
border-right: (3 / 4 * $size) solid $color2;
}
@else if $direction == "down" {
border-top: $size solid $color;
border-left: (3 / 4 * $size) solid $color2;
border-right: (3 / 4 * $size) solid $color2;
}
@else if $direction == "left" {
border-top: (3 / 4 * $size) solid $color2;
border-bottom: (3 / 4 * $size) solid $color2;
border-right: $size solid $color;
}
@else if $direction == "right" {
border-top: (3 / 4 * $size) solid $color2;
border-bottom: (3 / 4 * $size) solid $color2;
border-left: $size solid $color;
}
} @mixin imgAlpha($absurl){
background:url($absurl) no-repeat;
_background-image:none;
_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='$absurl');
} @mixin abstl($t:0,$l:0){position: absolute!important;top:$t;left:$l;right:auto!important;bottom:auto!important;}
@mixin abstr($t:0,$r:0){position: absolute!important;top:$t;left:auto!important;right:$r;bottom:auto!important;}
@mixin absbl($l:0,$b:0){position: absolute!important;top:auto!important;left:$l;right:auto!important;bottom:$b;}
@mixin absbr($b:0,$r:0){position: absolute!important;top:auto!important;left:auto!important;right:$r;bottom:$b;} @mixin wh($w,$h) {
width: $w;
height: $h
}
@mixin h-lh($h){
height: $h;
line-height: $h
}
@mixin mainWidget($width:1000px){
width: $width;margin: 0 auto;
}
@mixin pa{position:absolute;}
@mixin pr{position:relative;}
@mixin toh{white-space:nowrap;
text-overflow:ellipsis;
-o-text-overflow:ellipsis;
overflow: hidden;}
@mixin wbk{
word-break: break-all;
word-wrap: break-word;
}
@mixin dibWrap{font-size:;*word-spacing:-1px;}
@mixin dib{font-size: 12px;
letter-spacing: normal;
word-spacing: normal;
vertical-align:top;
display: inline-block;
*display:inline;
*zoom:;
}
//日后补上sass生成sprite获取位置的办?
// @mixin mobileicon($iconwidth,$iconheight,$destWidth,$destHeight){
// $height:(50/12/2);
// $width:(50/12/2) * (115/41);
// $xscale:$width;
// line-height: $height;
// @include wh($width#{rem},$height#{rem});
// background-size:$xscale#{rem} auto;
// } @mixin noinlinespace {
font-size:;
-webkit-text-size-adjust:none;
} @function calmobile($n) {
@return #{($n/12/2)}rem;
} @function ncalmobile($n) {
@return ($n/12/2)*1rem;
} @mixin fontsetting($size,$lineheight,$msize:null,$mlineheight:null,$color:null,$hcolor:null) {
font-size: if(unitless($size),#{$size}px,$size);/*pc端支持有没有px单位*/
@if (unitless($lineheight) and $lineheight >= 12){
//假定没有单位且小于12有可能用行高倍数来做so...
line-height: #{$lineheight}px;
}@else{
line-height: $lineheight;
}
@if ($msize != null and $mlineheight != null) {
@include when(mobile){
font-size: calmobile($msize);/*m只支持无单位*/
@if ($mlineheight >= 24){
//假定没有单位且小于12有可能用行高倍数来做so...
line-height: calmobile($mlineheight);
}@else{
line-height: $mlineheight;
}
};
}
@if ($color != null) {
color:$color;
}
@if ($hcolor != null) {
&:hover{color:$hcolor;}
}
}
@function getbgpct($iconlength,$imgposition,$imglength){
@if $imgposition == 0 {
@return 0;
}
@return percentage(($imgposition)/($imglength - $iconlength));
}
@mixin bgp($imgw,$imgh,$ofx,$ofy,$bgw,$bgh) {
background-position:-$ofx#{px} -$ofy#{px};//ie某些认不出两位小数的精确度百分比so
@include when(mobile){
background-position:getbgpct($imgw,$ofx,$bgw) getbgpct($imgh,$ofy,$bgh);
background-size:percentage($bgw / $imgw) percentage($bgh / $imgh);
};
}
@mixin addCommonInnerBorder($width:1px,$color:#000,$opacity:0.1){
&{
position: relative;
}
&:after{
content:" ";
position: absolute;
top: $width;
left: $width;
right: $width;
bottom: $width;
outline: $width solid;
@include unshiftClass(".btbuild_rgba"){
outline-color: rgba($color, $opacity);
};
@include unshiftClass(".btbuild_no-rgba"){
outline-color:lighten($color, 50%);
};
}
}
@mixin addCommonImgBrighter(){
&{
position: relative;
}
&:before{
display: none;
content:" ";
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
background-image: url(https://img.zhankr.net/wd5alffimdm113995.png);
}
&:hover:before{
display: block;
}
}
@mixin animated ($duration:1s,$count:infinite){
animation-duration: $duration;
animation-fill-mode: both;
animation-iteration-count: $count;
}
@mixin animatePulse_scale($scale:1.01,$duration:2s) {
@include animated($duration:$duration);
animation-name: pulse;
@at-root{
@keyframes pulse {
0% {
transform: scale3d(1,1,1)
}
50% {
transform: scale3d($scale,$scale,$scale)
}
100% {
transform: scale3d(1,1,1)
}
}
}
} // ___ ___ __
// /\_ \ /\_ \ /\ \
// ____ ___ _ __ ___\//\ \ \//\ \ \ \ \____ __ _ __
// /',__\ /'___\/\`'__\/ __`\\ \ \ \ \ \ \ \ '__`\ /'__`\ /\`'__\
// /\__, `\/\ \__/\ \ \//\ \L\ \\_\ \_ \_\ \_\ \ \L\ \/\ \L\.\_\ \ \/
// \/\____/\ \____\\ \_\\ \____//\____\/\____\\ \_,__/\ \__/.\_\\ \_\
// \/___/ \/____/ \/_/ \/___/ \/____/\/____/ \/___/ \/__/\/_/ \/_/ @mixin scrollbar-button($char,$color) {
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='12px' width='12px'><text x='0' y='12' fill='#{$color}' font-size='12'>#{$char}</text></svg>");
} @mixin scrollbar-buttons($color) {
&:vertical:decrement {
@include scrollbar-button("▲", $color);
}
&:vertical:increment {
@include scrollbar-button("▼", $color);
}
&:horizontal:decrement {
@include scrollbar-button("◄", $color);
}
&:horizontal:increment {
@include scrollbar-button("►", $color);
}
} @mixin initscrollbar-buttons{
::-webkit-scrollbar-button {
& {
background-repeat: no-repeat;
height: 15px;
width: 15px;
@include scrollbar-buttons(#535353); &:vertical:decrement {
background-position: 0 -2px;
}
&:vertical:increment {
background-position: 0 1px;
}
&:horizontal:decrement {
background-position: 0 -2px;
}
&:horizontal:increment {
background-position: 3px -2px;
} &:hover,
&:focus {
background-color: #c0c0c0;
}
&:active {
background-color: #7a7a7a;
@include scrollbar-buttons(#cbcbcb);
}
} // Dark scrollbars
.platform-win.dark & {
@include scrollbar-buttons(#ababab); &:hover,
&:focus {
background-color: #595959;
}
&:active {
background-color: #a9a9a9;
@include scrollbar-buttons(#000);
}
}
}
} @mixin addValignHelper() {
.valignHelper{
display: inline-block;
height: 100%;
vertical-align: middle;
}
} @mixin dimension($w,$h,$mw:null,$mh:null) {
width:if(unitless($w),$w#{px},$w);
height:if(unitless($h),$h#{px},$h);
@if($mw!=null){
@include when(mobile){
width:if(unitless($mw),calmobile($mw),$mw);
height:if(unitless($mh),calmobile($mh),$mh);
};
}
} @mixin pos($args...){
/**
* 4个重载
* pos(topleftrightbottom);
* pos(top,left);
* pos(x,y,zeropoint);
* pos(top,right,botom,left);
* usage:pos(20px)
* pos(300px,200px)
* pos(20px,40px,br);
* pos(40px,auto,auto 30px);
*/
$temp_pos_length:length($args);
$oneParam:if($temp_pos_length>=1,nth($args, 1),null);
$twoParam:if($temp_pos_length>=2,nth($args, 2),null);
$threeParam:if($temp_pos_length>=3,nth($args,3),null);
$fourParam:if($temp_pos_length>=4,nth($args, 4),null);
@if($temp_pos_length==1){
top:$oneParam;
right:$oneParam;
bottom:$oneParam;
left:$oneParam;
}@else if($temp_pos_length==2){
top:$oneParam;
left:$twoParam;
}@else if($temp_pos_length==3){
@if($threeParam==tl){
top:$oneParam;
left:$twoParam;
}@else if($threeParam==tr){
top:$oneParam;
right:$twoParam;
}@else if($threeParam==bl){
bottom:$oneParam;
left:$twoParam;
}@else if($threeParam==br){
bottom:$oneParam;
right:$twoParam;
}
}@else if($temp_pos_length==4){
top:$oneParam;
right:$twoParam;
bottom:$threeParam;
left:$fourParam;
}
} @mixin commonmorebtn() {
display: block;
height:calmobile(50);
@include fontsetting(14,14,24,50,#f0f0f0);
background-color: #ccc;
text-align: center;
margin:calmobile(40) 0 calmobile(30);
}
@mixin unshiftClass($prefixClass,$isAnd:false) {
@at-root{
@if ($isAnd==true) {
#{$prefixClass}#{&}{
@content;
}
}@else{
#{$prefixClass} &{
@content;
}
}
}
}
@mixin vw() {
-webkit-writing-mode: vertical-rl;
-ms-writing-mode: tb-rl;
writing-mode: vertical-rl;
*writing-mode: tb-rl;/* IE 写法 */
unicode-bidi : bidi-override;
} @mixin addMiddleLine($color:red) {
position: relative;
&:before{
content:"";
top:50%;
left:;
right:;
height:1px;
background-color: $color;
position: absolute;
z-index:;
}
}
@mixin mts($margin:0) {
@include when(mobile){
margin-top: $margin#{px};
};
@include when(pcnew){
margin-top: calmobile($margin);
};
}
@mixin mrs($margin:0) {
@include when(mobile){
margin-right: $margin#{px};
};
@include when(pcnew){
margin-right: calmobile($margin);
};
}
@mixin mbs($margin:0) {
@include when(mobile){
margin-bottom: $margin#{px};
};
@include when(pcnew){
margin-bottom: calmobile($margin);
};
}
@mixin pbs($margin:0) {
@include when(mobile){
padding-bottom: $margin#{px};
};
@include when(pcnew){
padding-bottom: calmobile($margin);
};
}

variables.scss

 @charset "utf-8";
//站点通用变量 //背景颜色
$bgc_default:#fff; //通用小字号
$fontSize_small:12px;
$fontSize_smallrem:1rem; //正文字号
$fontSize_normal:14px;
$fontSize_normalrem:1.1666rem; //正文字号2
$fontSize_normal2:16px;
$fontSize_normal2rem:1.333333rem; //标题字号
$fontSize_title_normal:18px;
$fontSize_title_normalrem:1.5rem; //大标题字号
$fontSize_title_large:24px;
$fontSize_title_largerem:2rem; //通用正文字体宋体
$fontFamily_normal:Tahoma,Arial; //通用标题或美观字体微软雅黑
$fontFamily_special:微软雅黑,黑体; //默认字体颜色
$fontColor_default:#000; //默认链接颜色
$color_link:#f60; //默认链接已过颜色
$color_link__Hover:#f60;
$color_lightest:#999;
$color_light:#666;
$color_dark:#333; //响应式的断点
// $mobileBreakPointWidth:414px;
$mobileBreakPointWidth:540px;
// $mobileBreakPointWidth:768px;
//pc主要区域的宽度
$pcMainWidth:1000px; //选择区域背景
$bgc_selection:#f60;
//选择区域字体颜色
$color_selectioin:#fff;
相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:8,942
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,466
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,281
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,095
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,728
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,765