fix mobile banner
This commit is contained in:
parent
3d6de6fd33
commit
396e7b4574
Binary file not shown.
Before Width: | Height: | Size: 487 KiB After Width: | Height: | Size: 146 KiB |
@ -8,205 +8,212 @@
|
|||||||
|
|
||||||
skel
|
skel
|
||||||
.breakpoints({
|
.breakpoints({
|
||||||
xlarge: '(max-width: 1680px)',
|
xlarge: '(max-width: 1680px)',
|
||||||
large: '(max-width: 1280px)',
|
large: '(max-width: 1280px)',
|
||||||
medium: '(max-width: 980px)',
|
medium: '(max-width: 980px)',
|
||||||
small: '(max-width: 736px)',
|
small: '(max-width: 736px)',
|
||||||
xsmall: '(max-width: 480px)'
|
xsmall: '(max-width: 480px)'
|
||||||
});
|
});
|
||||||
|
|
||||||
$(function() {
|
$(function() {
|
||||||
|
|
||||||
var $window = $(window),
|
var $window = $(window),
|
||||||
$body = $('body'),
|
$body = $('body'),
|
||||||
$wrapper = $('#page-wrapper'),
|
$wrapper = $('#page-wrapper'),
|
||||||
$banner = $('#banner'),
|
$banner = $('#banner'),
|
||||||
$header = $('#header');
|
$header = $('#header');
|
||||||
|
|
||||||
// Disable animations/transitions until the page has loaded.
|
// Disable animations/transitions until the page has loaded.
|
||||||
$body.addClass('is-loading');
|
$body.addClass('is-loading');
|
||||||
|
|
||||||
$window.on('load', function() {
|
$window.on('load', function() {
|
||||||
window.setTimeout(function() {
|
window.setTimeout(function() {
|
||||||
$body.removeClass('is-loading');
|
$body.removeClass('is-loading');
|
||||||
}, 100);
|
}, 100);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Mobile?
|
// Mobile?
|
||||||
if (skel.vars.mobile)
|
if (skel.vars.mobile)
|
||||||
|
$body.addClass('is-mobile');
|
||||||
|
else
|
||||||
|
skel
|
||||||
|
.on('-medium !medium', function() {
|
||||||
|
$body.removeClass('is-mobile');
|
||||||
|
})
|
||||||
|
.on('+medium', function() {
|
||||||
$body.addClass('is-mobile');
|
$body.addClass('is-mobile');
|
||||||
else
|
|
||||||
skel
|
|
||||||
.on('-medium !medium', function() {
|
|
||||||
$body.removeClass('is-mobile');
|
|
||||||
})
|
|
||||||
.on('+medium', function() {
|
|
||||||
$body.addClass('is-mobile');
|
|
||||||
});
|
|
||||||
|
|
||||||
// Fix: Placeholder polyfill.
|
|
||||||
$('form').placeholder();
|
|
||||||
|
|
||||||
// Prioritize "important" elements on medium.
|
|
||||||
skel.on('+medium -medium', function() {
|
|
||||||
$.prioritize(
|
|
||||||
'.important\\28 medium\\29',
|
|
||||||
skel.breakpoint('medium').active
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Fix: Placeholder polyfill.
|
||||||
|
$('form').placeholder();
|
||||||
|
|
||||||
|
// Prioritize "important" elements on medium.
|
||||||
|
skel.on('+medium -medium', function() {
|
||||||
|
$.prioritize(
|
||||||
|
'.important\\28 medium\\29',
|
||||||
|
skel.breakpoint('medium').active
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
// Scrolly.
|
// Scrolly.
|
||||||
$('.scrolly')
|
$('.scrolly')
|
||||||
.scrolly({
|
.scrolly({
|
||||||
speed: 1500,
|
speed: 1500,
|
||||||
offset: $header.outerHeight()
|
offset: $header.outerHeight()
|
||||||
});
|
});
|
||||||
|
|
||||||
// Menu.
|
// Menu.
|
||||||
$('#menu')
|
$('#menu')
|
||||||
.append('<a href="#menu" class="close"></a>')
|
.append('<a href="#menu" class="close"></a>')
|
||||||
.appendTo($body)
|
.appendTo($body)
|
||||||
.panel({
|
.panel({
|
||||||
delay: 500,
|
delay: 500,
|
||||||
hideOnClick: true,
|
hideOnClick: true,
|
||||||
hideOnSwipe: true,
|
hideOnSwipe: true,
|
||||||
resetScroll: true,
|
resetScroll: true,
|
||||||
resetForms: true,
|
resetForms: true,
|
||||||
side: 'right',
|
side: 'right',
|
||||||
target: $body,
|
target: $body,
|
||||||
visibleClass: 'is-menu-visible'
|
visibleClass: 'is-menu-visible'
|
||||||
});
|
});
|
||||||
|
|
||||||
// Header.
|
// Header.
|
||||||
if (skel.vars.IEVersion < 9)
|
if (skel.vars.IEVersion < 9)
|
||||||
$header.removeClass('alt');
|
$header.removeClass('alt');
|
||||||
|
|
||||||
if ($banner.length > 0
|
if ($banner.length > 0 &&
|
||||||
&& $header.hasClass('alt')) {
|
$header.hasClass('alt')) {
|
||||||
|
|
||||||
$window.on('resize', function() { $window.trigger('scroll'); });
|
$window.on('resize', function() {
|
||||||
|
$window.trigger('scroll');
|
||||||
|
});
|
||||||
|
|
||||||
$banner.scrollex({
|
$banner.scrollex({
|
||||||
bottom: $header.outerHeight() + 1,
|
bottom: $header.outerHeight() + 1,
|
||||||
terminate: function() { $header.removeClass('alt'); },
|
terminate: function() {
|
||||||
enter: function() { $header.addClass('alt'); },
|
$header.removeClass('alt');
|
||||||
leave: function() { $header.removeClass('alt'); }
|
},
|
||||||
});
|
enter: function() {
|
||||||
|
$header.addClass('alt');
|
||||||
|
},
|
||||||
|
leave: function() {
|
||||||
|
$header.removeClass('alt');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* particlesJS.load(@dom-id, @path-json, @callback (optional)); */
|
|
||||||
particlesJS('banner', {
|
|
||||||
"particles": {
|
|
||||||
"number": {
|
|
||||||
"value": 250,
|
|
||||||
"density": {
|
|
||||||
"enable": false,
|
|
||||||
"value_area": 1122.388442605866
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"color": {
|
|
||||||
"value": "#ffffff"
|
|
||||||
},
|
|
||||||
"shape": {
|
|
||||||
"type": "circle",
|
|
||||||
"stroke": {
|
|
||||||
"width": 0,
|
|
||||||
"color": "#000000"
|
|
||||||
},
|
|
||||||
"polygon": {
|
|
||||||
"nb_sides": 5
|
|
||||||
},
|
|
||||||
"image": {
|
|
||||||
"src": "img/github.svg",
|
|
||||||
"width": 100,
|
|
||||||
"height": 100
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"opacity": {
|
|
||||||
"value": 0.5,
|
|
||||||
"random": true,
|
|
||||||
"anim": {
|
|
||||||
"enable": true,
|
|
||||||
"speed": 1,
|
|
||||||
"opacity_min": 0.1,
|
|
||||||
"sync": false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"size": {
|
|
||||||
"value": 4.6,
|
|
||||||
"random": true,
|
|
||||||
"anim": {
|
|
||||||
"enable": false,
|
|
||||||
"speed": 6,
|
|
||||||
"size_min": 0.1,
|
|
||||||
"sync": false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"line_linked": {
|
|
||||||
"enable": true,
|
|
||||||
"distance": 150,
|
|
||||||
"color": "#ffffff",
|
|
||||||
"opacity": 0.4,
|
|
||||||
"width": 1
|
|
||||||
},
|
|
||||||
"move": {
|
|
||||||
"enable": true,
|
|
||||||
"speed": 2,
|
|
||||||
"direction": "none",
|
|
||||||
"random": true,
|
|
||||||
"straight": false,
|
|
||||||
"out_mode": "out",
|
|
||||||
"bounce": false,
|
|
||||||
"attract": {
|
|
||||||
"enable": true,
|
|
||||||
"rotateX": 600,
|
|
||||||
"rotateY": 1200
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"interactivity": {
|
|
||||||
"detect_on": "canvas",
|
|
||||||
"events": {
|
|
||||||
"onhover": {
|
|
||||||
"enable": true,
|
|
||||||
"mode": "grab"
|
|
||||||
},
|
|
||||||
"onclick": {
|
|
||||||
"enable": true,
|
|
||||||
"mode": "push"
|
|
||||||
},
|
|
||||||
"resize": true
|
|
||||||
},
|
|
||||||
"modes": {
|
|
||||||
"grab": {
|
|
||||||
"distance": 133.99274002972194,
|
|
||||||
"line_linked": {
|
|
||||||
"opacity": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"bubble": {
|
|
||||||
"distance": 400,
|
|
||||||
"size": 40,
|
|
||||||
"duration": 2,
|
|
||||||
"opacity": 8,
|
|
||||||
"speed": 3
|
|
||||||
},
|
|
||||||
"repulse": {
|
|
||||||
"distance": 200,
|
|
||||||
"duration": 0.4
|
|
||||||
},
|
|
||||||
"push": {
|
|
||||||
"particles_nb": 4
|
|
||||||
},
|
|
||||||
"remove": {
|
|
||||||
"particles_nb": 2
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"retina_detect": false
|
|
||||||
});
|
|
||||||
|
|
||||||
|
if ($( window ).width() > 980) {
|
||||||
|
particlesJS('banner', {
|
||||||
|
"particles": {
|
||||||
|
"number": {
|
||||||
|
"value": 250,
|
||||||
|
"density": {
|
||||||
|
"enable": false,
|
||||||
|
"value_area": 1122.388442605866
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"color": {
|
||||||
|
"value": "#ffffff"
|
||||||
|
},
|
||||||
|
"shape": {
|
||||||
|
"type": "circle",
|
||||||
|
"stroke": {
|
||||||
|
"width": 0,
|
||||||
|
"color": "#000000"
|
||||||
|
},
|
||||||
|
"polygon": {
|
||||||
|
"nb_sides": 5
|
||||||
|
},
|
||||||
|
"image": {
|
||||||
|
"src": "img/github.svg",
|
||||||
|
"width": 100,
|
||||||
|
"height": 100
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"opacity": {
|
||||||
|
"value": 0.5,
|
||||||
|
"random": true,
|
||||||
|
"anim": {
|
||||||
|
"enable": true,
|
||||||
|
"speed": 1,
|
||||||
|
"opacity_min": 0.1,
|
||||||
|
"sync": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"size": {
|
||||||
|
"value": 4.6,
|
||||||
|
"random": true,
|
||||||
|
"anim": {
|
||||||
|
"enable": false,
|
||||||
|
"speed": 6,
|
||||||
|
"size_min": 0.1,
|
||||||
|
"sync": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"line_linked": {
|
||||||
|
"enable": true,
|
||||||
|
"distance": 150,
|
||||||
|
"color": "#ffffff",
|
||||||
|
"opacity": 0.4,
|
||||||
|
"width": 1
|
||||||
|
},
|
||||||
|
"move": {
|
||||||
|
"enable": true,
|
||||||
|
"speed": 2,
|
||||||
|
"direction": "none",
|
||||||
|
"random": true,
|
||||||
|
"straight": false,
|
||||||
|
"out_mode": "out",
|
||||||
|
"bounce": false,
|
||||||
|
"attract": {
|
||||||
|
"enable": true,
|
||||||
|
"rotateX": 600,
|
||||||
|
"rotateY": 1200
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"interactivity": {
|
||||||
|
"detect_on": "canvas",
|
||||||
|
"events": {
|
||||||
|
"onhover": {
|
||||||
|
"enable": true,
|
||||||
|
"mode": "grab"
|
||||||
|
},
|
||||||
|
"onclick": {
|
||||||
|
"enable": true,
|
||||||
|
"mode": "push"
|
||||||
|
},
|
||||||
|
"resize": true
|
||||||
|
},
|
||||||
|
"modes": {
|
||||||
|
"grab": {
|
||||||
|
"distance": 133.99274002972194,
|
||||||
|
"line_linked": {
|
||||||
|
"opacity": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"bubble": {
|
||||||
|
"distance": 400,
|
||||||
|
"size": 40,
|
||||||
|
"duration": 2,
|
||||||
|
"opacity": 8,
|
||||||
|
"speed": 3
|
||||||
|
},
|
||||||
|
"repulse": {
|
||||||
|
"distance": 200,
|
||||||
|
"duration": 0.4
|
||||||
|
},
|
||||||
|
"push": {
|
||||||
|
"particles_nb": 5
|
||||||
|
},
|
||||||
|
"remove": {
|
||||||
|
"particles_nb": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"retina_detect": false
|
||||||
|
});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
})(jQuery);
|
})(jQuery);
|
@ -1761,7 +1761,7 @@ body.is-mobile {
|
|||||||
|
|
||||||
#banner,
|
#banner,
|
||||||
.wrapper.style4 {
|
.wrapper.style4 {
|
||||||
@include vendor('background-image', ('linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0.5))', 'url("../../assets/images/banner.jpg")'));
|
@include vendor('background-image', 'url("../../assets/images/banner.jpg")');
|
||||||
background-position: center center;
|
background-position: center center;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
@ -1829,6 +1829,7 @@ body {
|
|||||||
}
|
}
|
||||||
.particle {
|
.particle {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
user-select: none;
|
||||||
|
|
||||||
#particles-js {
|
#particles-js {
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
@ -1851,5 +1852,6 @@ body {
|
|||||||
-webkit-transform: translate(-50%, -50%);
|
-webkit-transform: translate(-50%, -50%);
|
||||||
transform: translate(-50%, -50%);
|
transform: translate(-50%, -50%);
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
user-select: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in New Issue
Block a user