Description
With simple controls and classic Vintage design, the VALK Laneway 5 is all about simplicity. At the heart of it is an advanced torque sensor that measures the effort you put in and adds the appropriate amount of assistance. This superior technology provides smooth and instantaneous power delivery, which essentially means a natural and enjoyable riding experience.
We’ve carefully selected the finest components for the Laneway 5 – a smooth and quiet motor, premium long-range battery with LG cells, alloy frame, Shimano gears, Kenda tyres, Tektro brakes, and LED lights that are wired to the battery.
It’s designed for comfort with soft padded handle grips and a wide comfy saddle with integrated suspension. It will fit perfectly into your life, whether commuting to uni or work, or popping to your favourite cafe to catch up with friends. Arrive looking your best after cruising up the hills on a VALK Laneway 5!
VALK – Electric Revolution
#myBtn {
display: none;
position: fixed;
bottom: 100px;
right: 30px;
z-index: 99;
border: none;
outline: none;
background-color: #FAA830;
color: white;
cursor: pointer;
padding: 15px;
border-radius: 50%;
}
#myBtn:hover {
background-color: #C77905;
}
.button-up {
margin: 30px auto;
height: 70px;
width: 70px;
transition: all 0.2s linear;
}
.button-up:hover {
transform: translate3d(0, -10px, 0);
}
.button-up::after {
content: “”;
position: absolute;
left: 17px;
z-index: 11;
display: block;
width: 25px;
height: 25px;
border-top: 2px solid #fff;
border-left: 2px solid #fff;
}
.button-up::after {
top: 30px;
left: 22px;
transform: rotate(45deg);
}
// Get the button
let mybutton = document.getElementById(“myBtn”);
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = “block”;
} else {
mybutton.style.display = “none”;
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}