scratch

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 69  →  ?path2? @ 70
/text.html
@@ -22,6 +22,8 @@
<link href="bower_components/trumbowyg/dist/ui/trumbowyg.min.css" rel="stylesheet">
<!-- Local style -->
<link href="css/text/style.css" rel="stylesheet">
<!-- Site-wide style CCS -->
<link href="css/style.css" rel="stylesheet">
</head>
 
<body>
@@ -29,9 +31,10 @@
<div class="container">
 
<!-- Main component for a primary marketing message or call to action -->
<div class="paralax-background"></div>
<div class="jumbotron">
<h1>Scratch</h1>
<p>Asset sharing platform.</p>
<p class="lead">Asset sharing platform</p>
</div>
<ul class="nav nav-tabs">
@@ -356,5 +359,16 @@
});
});
</script>
<script>
var jumboHeight = $('.jumbotron').outerHeight();
function parallax(){
var scrolled = $(window).scrollTop();
$('.paralax-background').css('height', (jumboHeight-scrolled) + 'px');
}
 
$(window).scroll(function(e){
parallax();
});
</script>
</body>
</html>