Everything You Need To Know About Yoga.
Contrary to popular belief, Lorem Ipsum is not simply random text. It has rootsnin a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at hampden.
Yoga in Real Life
I try to bring my focus away from the constricted feeling around my armpit to my breathing. Deep breath in. Deep breath out. I can see my icy exhalations right in front of me.
// When the user scrolls the page, execute myFunction
window.onscroll = function() {myFunction()};
// Get the header
var header = document.getElementById("myHeader");
// Get the offset position of the navbar
var sticky = header.offsetTop;
// Add the sticky class to the header when you reach its scroll position. Remove "sticky" when you leave the scroll position
function myFunction() {
if (window.pageYOffset > sticky) {
header.classList.add("sticky");
} else {
header.classList.remove("sticky");
}
}