Skip to content

JavaScript

kimschles edited this page Sep 21, 2018 · 1 revision

Tips to Reduce the Amount of JS in your App

#gallery {
  scroll-snap-type: x mandatory;
  overflow-x: scroll;
  display: flex;
}

#gallery img {
   scroll-snap-align: center;
}
</style>

<div id="gallery">
  <img src="cat.jpg">
  <img src="dog.jpg">
  <img src="another_cute_animal.jpg">
</div>``` 

* Server-rendered apps
Clone this wiki locally