positionMode String
(default: "fixed")
Specifies CSS position of the BottomNavigation in the document. Valid options are: absolute
, fixed
and sticky
.
Example
<nav id="bottomnav"></nav>
<script>
$("#bottomnav").kendoBottomNavigation({
positionMode: "absolute",
items: [
{ text: "Home", icon: "home" },
{ text: "Info", icon: "info-circle" },
{ text: "Contact", icon: "envelope" }
]
});
</script>