aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/cover_photo_widget.tpl
blob: 4e210a300760bd73bfc2e3fccacf0a3360ceeb56 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<script>
	var aside_padding_top;
	var section_padding_top;

	$(document).ready(function() {

		aside_padding_top = parseInt($('aside').css('padding-top'));
		section_padding_top = parseInt($('section').css('padding-top'));

		if($('#cover-photo').length && $(window).width() > 755) {
			$('.navbar-fixed-top').css('position', 'relative');
			$('main').css('margin-top', - $('nav').outerHeight(true) + 'px');
			$('aside').css('padding-top', aside_padding_top - $('nav').outerHeight() + 'px');
			$('section').css('padding-top', section_padding_top  - $('nav').outerHeight() + 'px');
			$('main').css('opacity', 0);
			$('header').hide();
		}
		else {
			$('#cover-photo').remove();
		}
	});

	$(window).scroll(function () {
		if($('#cover-photo').length && $(window).width() > 755 && $(window).scrollTop() >= $('#cover-photo').height()) {
			$('header').fadeIn();
			$('main').css('opacity', 1);
			$('aside').css('padding-top', aside_padding_top + 'px');
			$('section').css('padding-top', section_padding_top + 'px');
			$(window).scrollTop($(window).scrollTop() - $('#cover-photo').height())
			$('.navbar-fixed-top').css('position', 'fixed');
			$('main').css('margin-top', '');
			$('#cover-photo').remove();
		}
		if($('#cover-photo').length) {
			$('main').css('opacity', ($(window).scrollTop()/$('#cover-photo').height()).toFixed(1));
		}
	});

	$(window).resize(function () {
		if($('#cover-photo').length && $(window).width() < 755) {
			$('main').css('opacity', 1);
			$('aside').css('padding-top', aside_padding_top + 'px');
			$('section').css('padding-top', section_padding_top + 'px');
			$('.navbar-fixed-top').css('position', 'fixed');
			$('#cover-photo').remove();
		}

	});

	function slideUpCover() {
		$('html, body').animate({scrollTop: Math.ceil($('#cover-photo').height()) + 'px' });
	}
</script>

<div id="cover-photo" onclick="slideUpCover();" title="{{$hovertitle}}">
	{{$photo_html}}
	<div id="cover-photo-caption">
		<div class="cover-photo-title">
			{{$title}}
		</div>
		<div class="cover-photo-subtitle">
			{{$subtitle}}
		</div>
	</div>
</div>