導航:首頁 > 好看圖片 > html簡單的圖片輪播代碼

html簡單的圖片輪播代碼

發布時間:2024-12-20 04:47:04

Ⅰ 網頁製作 讓網頁上的圖片自動變換的代碼

HTML中圖片輪播代碼如下:

<!DOCTYPEhtml>
<html>
<head><title>圖片輪播代碼</title>
<metacharset="utf-8"><metaname="viewport"content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=0">
</head>
<styletype="text/css">
body{max-width:640px;margin:0auto;}
#lunboulli{width:100%;list-style:none;width:640px;height:250px;background-color:#f00;text-align:center;}
#lunboulli:not(:first-child){display:none;}</style><body><divid="lunbo">
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ul></div><scripttype="text/javascript">
//因為使用了document,所以js需要放在需要執行的代碼下面生效才能生效
varli=document.getElementById('lunbo').getElementsByTagName("li");
varnum=0;
varlen=li.length;

setInterval(function(){
li[num].style.display="none";
num=++num==len?0:num;
li[num].style.display="inline-block";

},3000);//切換時間
</script>
</body>
</html>

怎麼用html和css做圖片輪播

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>css實現輪播效果</title> <style type="text/css"> .one { position: absolute; width: 500px; height: 400px; overflow: hidden; } .one_cantent img { width: 500px; height: 300px; float: left; } .one_cantent { width: 2500px; height: 400px; position: absolute; left: 0px; animation-name: move; animation-ration: 10s; animation-iteration-count: infinite; } @keyframes move { 0% { left: 0px; } 25% { left: -500px; } 50% { left: -1000px; } 75% { left: -1500px; } 100% { left: -2000px } } </style> </head> <body> <div> <div> <img src="./image/0.jpg"> <img src="./image/1.jpg"> <img src="./image/2.jpg"> <img src="./image/3.jpg"> <img src="./image/4.jpg"> </div> </div> </body> </html>

Ⅲ HTML圖片輪播代碼怎麼寫

html部分

<divid="container">
<divclass="sections">
<divclass="section"id="section0"><h3>thisisthepage1</h3></div>
<divclass="section"id="section1"><h3>thisisthepage2</h3></div>
<divclass="section"id="section2"><h3>thisisthepage3</h3></div>
<divclass="section"id="section3"><h3>thisisthepage4</h3></div>
</div>
</div>

css部分

*{
padding:0;
margin:0;
}
html,body{
height:100%;
}
#container{
width:100%;
height:500px;
overflow:hidden;
}
.sections,.section{
height:100%;
}
#container,.sections{
position:relative;
}
.section{
background-color:#000;
background-size:cover;
background-position:50%50%;
text-align:center;
color:white;
}
#section0{
background-image:url('images/1.jpg');
}
#section1{
background-image:url('images/2.jpg');
}
#section2{
background-image:url('images/3.jpg');
}
#section3{
background-image:url('images/4.jpg');
}
.pagesli{list-style-type:none;width:10px;height:10px;border-radius:10px;background-color:white}.pagesli:hover{box-shadow:005px2pxwhite}.pagesli.active{background-color:orange;box-shadow:005px2pxorange}.pages{position:absolute;z-index:999}.pages.horizontal{left:50%;transform:translateX(-50%);bottom:5px}.pages.horizontalli{display:inline-block;margin-right:10px}.pages.horizontalli:last-child{margin-right:0}.pages.vertical{right:5px;top:50%;transform:translateY(-50%)}.pages.verticalli{margin-bottom:10px}.pages.verticalli:last-child{margin-bottom:0}

JS部分

<scriptsrc="js/jquery-1.11.0.min.js"type="text/javascript"></script>
//引入pageSwitch.min.js
<script>
$("#container").PageSwitch({
direction:'horizontal',
easing:'ease-in',
ration:1000,
autoPlay:true,
loop:'false'
});
</script>

Ⅳ html5如何實現圖片輪播

靜態獲取圖片寫法,給定圖片的個數,用js實現輪播圖自動轉換。

  1. <!DOCTYPE html>

  2. <html lang="en">

  3. <head>

  4. <meta charset="UTF-8">

  5. <title>Document</title>

  6. <!-- *******設置樣式********** -->

  7. <style type="text/css">

  8. .show_div{

  9. width: 400px;

  10. height: 400px;

  11. margin: 0 auto;

  12. border: 2px solid block;

  13. overflow: hidden;

  14. }

  15. .scroll_div{

  16. width: 2000px;

  17. height: 400px;

  18. }

  19. .scroll_div img{

  20. width: 400px;

  21. height: 400px;

  22. float: left;

  23. }

  24. </style>

  25. <!-- end -->

  26. </head>

  27. <body>

  28. <div class="show_div">

  29. <div class="scroll_div">

  30. <img src="img/b.jpg" alt="">

  31. <img src="img/c.jpg" alt="">

  32. <img src="img/d.jpg" alt="">

  33. <img src="img/a.jpg" alt="">

  34. <img src="img/b.jpg" alt="">

  35. </div>

  36. </div>

  37. </body>

  38. <!-- *********js代碼******** -->

  39. <script type="text/javascript">

  40. var scrollDiv = document.getElementsByClassName("scroll_div")[0];

  41. // 定義初始值

  42. var left =0;

  43. // 定義一個定時器 走一步

  44. function move(){

  45. var timer = setInterval(function(){

  46. left --;

  47. if (left <= -1600) {

  48. left = 0;

  49. }

  50. if (left % -400 == 0) {

  51. clearInterval(timer);

  52. timer = null;

  53. }

  54. scrollDiv.style.marginLeft = left + "px";

  55. },10);

  56. }

  57. // 定義一個定時器 每隔固定時間 走一張

  58. setInterval(function(){

  59. move();

  60. },5000);

  61. </script>

  62. </html>

閱讀全文

與html簡單的圖片輪播代碼相關的資料

熱點內容
中國美女內衣紅色衣服皮圖片 瀏覽:635
一年級簡單生字手抄報圖片 瀏覽:306
賀卡最簡單的做法圖片 瀏覽:527
微信帶字頭像圖片女生 瀏覽:68
如何把握將來圖片 瀏覽:969
女生動漫圖片冷酷 瀏覽:893
人狗文字圖片 瀏覽:334
女生發育動漫圖片 瀏覽:310
女生滑板擺拍圖片大全 瀏覽:153
黑白背景男生打黑傘圖片 瀏覽:588
長圖片怎麼做成169 瀏覽:76
日本動漫頭像可愛圖片 瀏覽:660
液體面膜怎麼使用圖片 瀏覽:729
可愛豬手圖片 瀏覽:938
動畫片里可愛人打招呼的圖片 瀏覽:1001
ps將圖片嵌入文字 瀏覽:263
一個女孩子火車的圖片 瀏覽:215
寢室牆紙布置圖片大全 瀏覽:261
怎麼畫好圖片 瀏覽:481
ps如何把背景圖片變淡 瀏覽:936