Creating a minimalist navbar without the use of JavaScript or custom CSS is easier than you think.
<nav class="navbar navbar-expand-md navbar-light bg-faded">
<a class="navbar-brand" href="#">
<img src="logo.jpg" alt="LOGO">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
</div>
</nav>
If you want to create a navbar with a logo image that transitions from center to left upon scrolling, it can be done seamlessly - even if you're not an animation expert.
To achieve this effect, consider these reference images for the initial and scrolled down states: Image for Not Scrolled down: https://i.sstatic.net/PkAli.png
Scrolled down Image: https://i.sstatic.net/LkPgx.png