Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagecss
// for a specfic map
.im__wrapper--mapName1 {
  --imap-loop-video: 0; // loop off
}

Select the previous/next map button

If you need previous next buttons for your maps you could hide all buttons except the previous and next button

Code Block
languagecss
//hide all map buttons
.im__navigation__container__item{
  display:none;
}
//show previous map button
.im__navigation__container__item:has( + .im__navigation__container__item--active){
  display: block;
  //position previous button correctly
}
//show next map button
.im__navigation__container__item--active + .im__navigation__container__item{
  display:block;
  //position next button correctly
}