A vertical navigation menu sliding into the screen from outside of the window (off canvas) when the user clicks an icon or performs some other sort of action.
Questions tagged [off-canvas-menu]
109 questions
0
votes
0 answers
How to HTML Button follow move offcanvas Boostrap 5
I have code for scrolling canvas and that just work.
And I put the Button at right side just cover when I press the other button for running scrolling canvas.
I will the button still show follow the scrolling canvas, when that open and close.
this…

Mainboard
- 1
- 2
0
votes
1 answer
Focus always goes to link on OffCanvas component
I have a script that gives the focus to a specific element in a popped up div when pressing the down key in a textbox. Worked well until I added a sidebar navigation pane using an Bootstrap offcanvas component.
Now, even though the script still does…

Atchoum
- 703
- 8
- 16
0
votes
0 answers
How Could I use setTimeout to open an offcanvas Bootstrap 5 and then close it the normal way?
today my problem is that I couldn't hide my offcanvas when used with a setTimeout function.
/* Main scripts */
window.addEventListener("DOMContentLoaded", () => {
const offcanvas = document.getElementById('offcanvasMenu')
…

Etienne LERICHE
- 13
- 4
0
votes
1 answer
How can i show last opening offcanvas at the top?
The problem is offcanvas3 opens behind offcanvas2.
Like that
$("#open-offcanvas2").on("click", function(){
$("#offcanvas2").offcanvas("show")
})
$("#open-offcanvas1").on("click", function(){
…

Yahya Altintop
- 204
- 2
- 12
0
votes
0 answers
open Collapse sidebar with same DB id
I'm currently working on the forum section of my website.
I followed the link @CBroe suggest me on the comments and implemented offcanvas for my previous problem and now I have this:
…