0
I’m starting with Materialize, and I’m having a doubt.
How to leave the background image of parallax
?
Currently, the function image is in the middle of the screen.
CSS
<style>
.parallax-container {
height: 100%;
}
</style>
BUDDY
<div class="parallax-container">
<div class="parallax"><img src="bg.png"></div>
<nav>
<div class="nav-wrapper teal darken-4">
<a href="#" class="brand-logo center">Logo</a>
</div>
</nav>
</div>
SCRIPT
<script>
$(document).ready(function(){
$('.parallax').parallax();
});
</script>