Posts by Fábio Chiquezi • 63 points
2 posts
- 
		0 votes2 answers368 viewsQ: Gulp Sass does not workSo far everything worked on Gulp perfectly, except the Sass. My Code: var sass = require('gulp-ruby-sass'); gulp.task('styles', function(){ gulp.src('./src/scss/**/*.scss') .pipe(sass())… 
- 
		6 votes2 answers2114 viewsQ: How to perform an action when reaching a certain scroll height?I have a function that every time I give scroll he calls a certain function, only I want to call him only once $(window).on('scroll', function(e){ //aparece segundo menu if($(this).scrollTop() >=…