简体   繁体   中英

how to make sliding images on my landing page?

i am a new designer trying to build a landing page. Please, how can i make background images to change on the home of my landing page. this is what it currently looks like: < https://ebuzor20.github.io/fusa-updated1/ > any help to making the page look better would be greatly appreciated.

You can just use plain html and css, there is the code and example

Make a div to wrap all of your slider, and wrap the image with figure

<div id="slider">
 <figure>
  <img src="austin-fireworks.jpg" alt>
  <img src="taj-mahal_copy.jpg" alt>
  <img src="ibiza.jpg" alt>
  <img src="ankor-wat.jpg" alt>
  <img src="austin-fireworks.jpg" alt>
 </figure>
</div>

and there is the css

@keyframes slidy {
0% { left: 0%; }
20% { left: 0%; }
25% { left: -100%; }
45% { left: -100%; }
50% { left: -200%; }
70% { left: -200%; }
75% { left: -300%; }
95% { left: -300%; }
100% { left: -400%; }
}

body { margin: 0; } 
div#slider { overflow: hidden; }
div#slider figure img { width: 20%; float: left; }
div#slider figure { 
  position: relative;
  width: 500%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  animation: 30s slidy infinite; 
}

You can see the demo on https://codepen.io/dudleystorey/pen/kBrWvm

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM