Advertisement
kangjaz

Slideshow_background

Dec 26th, 2020
1,341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Background Slide Show</title>
  7.     <style>
  8.         .slide-content {
  9.             background: rgba(0, 0, 0, 0.425);
  10.             border-radius: 10px;
  11.             padding: 50px 0px;
  12.             width: 60%;
  13.             position: absolute;
  14.             top: 20%;
  15.             left: 20%;
  16.             text-align: center;
  17.         }
  18.  
  19.         h4 {
  20.             font-family: Verdana, Geneva, Tahoma, sans-serif;
  21.             font-size: 60px;
  22.             color: #fff;
  23.             margin-top: 20px;
  24.             margin-bottom: 20px;
  25.         }
  26.  
  27.         p {
  28.             font-family: Verdana, Geneva, Tahoma, sans-serif;
  29.             font-size: 20px;
  30.             color: #fff;
  31.         }
  32.     </style>
  33. </head>
  34. <body>
  35.     <div class="slide-content">
  36.         <h4>KANGJAZ.COM</h4>
  37.         <p>Membuat Background Slideshow dengan JQuery Backstretch</p>
  38.     </div>
  39.     <script src="./assets/jquery-3.5.1.min.js"></script>
  40.     <script src="./assets/jquery.backstretch.min.js"></script>
  41.     <script>
  42.         $.backstretch(
  43.             [
  44.                 './assets/background1.jpg', //sesuaikan dengan nama file gambar dan ekstensinya
  45.                 './assets/background2.jpg' //sesuaikan dengan nama file gambar dan ekstensinya
  46.             ],
  47.             {
  48.                 duration: 2000, //durasi tampil per gambar
  49.                 transition: 'fade', //animasi transisi
  50.                 transitionDuration: 1000 //durasi animasi
  51.             }
  52.         );
  53.     </script>
  54. </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement