当前位置:首页 » 背景图片 » html背景图片实现轮播
扩展阅读
水蛇图片大全 2025-01-31 07:34:51
这点冷算什么图片 2025-01-31 07:32:58
两个鸡蛋跳舞动态图片 2025-01-31 07:22:45

html背景图片实现轮播

发布时间: 2023-09-04 13:31:23

❶ Html中怎么实现背景图每5秒轮播呢

每个LI标签都是一张图片,再让这个DIV超出部分隐藏,这样只能看到一张图片很简单的啊。
一个DIV内放一个UL, 三个li 标签,再5秒种把整个UL向左或者向右移动一张图片的宽度的距离,这种类似于图片轮播了。
你要简单点的话,可以直接在DIV里面放一个IMG标签,过5秒直接改他的src属性

❷ 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图片轮播代码怎么写

一、数字键控制代码:
<div style="position:relative; top:-50px; left:240px;">
<a href="javascript:show(1)"><span id="I1" style="width:18px; text-align:left; background:gray">1</span></a>
<a href="javascript:show(2)"><span id="I2" style="width:18px;text-align:left;background-color:gray">2</span></a>
<a href="javascript:show(3)"><span id="I3" style="width:18px;text-align:left;background-color:gray">3</span></a>
<a href="javascript:show(4)"><span id="I4" style="width:18px;text-align:left;background-color:gray">4</span></a>
<a href="javascript:show(5)"><span id="I5" style="width:18px;text-align:left;background-color:gray">5</span></a>
<a href="javascript:show(6)"><span id="I6" style="width:18px;text-align:left;background-color:gray">6</span></a></div>
<script language="javaScript">
var nowIndex=1;
var maxIndex=6;
function show(index)
{
if(Number(index)){
clearTimeout(theTimer);
nowIndex=index;
}
for(var i=1;i<(maxIndex+1);i++){
if(i==nowIndex)
{document.getElementById('pic'+nowIndex).style.display='';
document.getElementById('I'+nowIndex).style.backgroundColor='red';}
else
{document.getElementById('pic'+i).style.display='none';
document.getElementById('I'+i).style.backgroundColor='gray';}
}{
if(nowIndex==maxIndex)
nowIndex=1;
else
nowIndex++;
}
theTimer=setTimeout('show()',3000);
}
</script>
</div>
二、图片自动播放:
<div id="butong_net_left" style="overflow:hidden;width:1000px;">
<table cellpadding="0" cellspacing="0" border="0">
<tr><td id="butong_net_left1" valign="top" align="center">
<table cellpadding="2" cellspacing="0" border="0">
<tr align="center">

❹ HTML中的图片轮播怎么做

可以上jquery插件库这个网站看看,大部分资源是免费的。轮播图也有好多。
bootstrap也提供轮播模板。
自己写的话,假如放3张轮播图,pic1,pic2,pic3。创建一个ul,ul中放5张图片,顺序是pic3,pic1,pic2,pic3,pic1,这样衔接起来。设置ul的宽度是500%,li的宽度是20%,这样图片就能一字排开,设置ul的父元素的样式为overflow:hidden;再用CSS3的动画属性,让li中的图片元素位移或者让ul位移。