instead of not displaying the cover-photo at all after first page load, load the page with the cover slided up. change pointer to n-resize if cover is not slid.
This commit is contained in:
@@ -2,16 +2,27 @@
|
||||
var aside_padding_top;
|
||||
var section_padding_top;
|
||||
var coverSlid = false;
|
||||
var hide_cover = Boolean({{$hide_cover}});
|
||||
|
||||
$(document).ready(function() {
|
||||
if(! $('#cover-photo').length)
|
||||
return;
|
||||
|
||||
aside_padding_top = parseInt($('aside').css('padding-top'));
|
||||
section_padding_top = parseInt($('section').css('padding-top'));
|
||||
|
||||
$(document).on('click mouseup keyup', slideUpCover);
|
||||
|
||||
if($('#cover-photo').length && $(window).width() > 755) {
|
||||
if($(window).width() > 755) {
|
||||
datasrc2src('#cover-photo > img');
|
||||
|
||||
if(hide_cover) {
|
||||
hideCover();
|
||||
coverSlid = true;
|
||||
}
|
||||
|
||||
if($(window).scrollTop() < $('#cover-photo').height()) {
|
||||
$('body').css('cursor', 'n-resize');
|
||||
$('.navbar').removeClass('fixed-top');
|
||||
$('main').css('margin-top', - $('nav').outerHeight(true) + 'px');
|
||||
$('main').css('opacity', 0);
|
||||
@@ -24,32 +35,34 @@
|
||||
});
|
||||
|
||||
$(window).scroll(function () {
|
||||
if($('#cover-photo').length && $(window).width() > 755 && $(window).scrollTop() >= $('#cover-photo').height()) {
|
||||
if($(window).width() > 755 && $(window).scrollTop() >= $('#cover-photo').height()) {
|
||||
$('body').css('cursor', '');
|
||||
$('.navbar').addClass('fixed-top');
|
||||
$('main').css('margin-top', '');
|
||||
$('main').css('opacity', 1);
|
||||
coverSlid = true;
|
||||
}
|
||||
else if ($('#cover-photo').length && $(window).width() > 755 && $(window).scrollTop() < $('#cover-photo').height()){
|
||||
else if ($(window).width() > 755 && $(window).scrollTop() < $('#cover-photo').height()){
|
||||
if(coverSlid) {
|
||||
$(window).scrollTop(Math.ceil($('#cover-photo').height()));
|
||||
setTimeout(function(){ coverSlid = false; }, 1000);
|
||||
}
|
||||
else {
|
||||
if($(window).scrollTop() < $('#cover-photo').height()) {
|
||||
$('body').css('cursor', 'n-resize');
|
||||
$('.navbar').removeClass('fixed-top');
|
||||
$('main').css('margin-top', - $('nav').outerHeight(true) + 'px');
|
||||
$('main').css('opacity', 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
if($('#cover-photo').length && $('main').css('opacity') < 1) {
|
||||
if($('main').css('opacity') < 1) {
|
||||
$('main').css('opacity', ($(window).scrollTop()/$('#cover-photo').height()).toFixed(1));
|
||||
}
|
||||
});
|
||||
|
||||
$(window).resize(function () {
|
||||
if($('#cover-photo').length && $(window).width() < 755) {
|
||||
if($(window).width() < 755) {
|
||||
$('#cover-photo').remove();
|
||||
$('.navbar').addClass('fixed-top');
|
||||
$('main').css('opacity', 1);
|
||||
@@ -65,6 +78,13 @@
|
||||
$('html, body').animate({scrollTop: Math.ceil($('#cover-photo').height()) + 'px' }, 'fast');
|
||||
return;
|
||||
}
|
||||
|
||||
function hideCover() {
|
||||
if(coverSlid) {
|
||||
return;
|
||||
}
|
||||
window.scrollTo(0, Math.ceil($('#cover-photo').height()));
|
||||
}
|
||||
</script>
|
||||
|
||||
<div id="cover-photo" title="{{$hovertitle}}">
|
||||
|
||||
Reference in New Issue
Block a user