簡體   English   中英

如何使用CSS將滑塊賦予背景圖像?

[英]how can we give slider to background image using css?

碼:

<html>
<head>
  <style> 
  #example1 {
      background-image: url(img_flwr.gif), url(paper.gif), url(flower.gif);
      background-position: right bottom, left top;
      background-repeat: no-repeat, repeat;
      padding: 100px;
  }
  </style>
</head>
<body>
  <div id="example1">
  </div>
</body>
</html>

在這里,我正在使用三個背景圖像,即img_flwr.gif,paper.gif,flower.gif。 我想使用CSS滑動這些圖像。 我不想使這些圖像褪色。 那么,我該怎么做呢?

創建一個圖像元素,並使用position: absolutez-index CSS屬性將圖像設置在另一個元素后面。 然后使用JQuery制作滑塊。

<html>
<head>
  <style> 
#example1 {
  background-position: right bottom;
  background-repeat: no-repeat, repeat;
  padding: 100px;
  z-index: 10;

 }
#slider {
    position: absolute;
    z-index: 0;
 }
  </style>
  </head>
  <body>
  <div id="example1">

  </div>
 <div id="slider">
 <img src="flwr.jpg" alt="Paris">
 <img src="paper.jpg" alt="Paris">
 <img src="flower.jpg" alt="Paris">
  </div>

<script>

</script>



</body>
</html>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM