web网页轮播图/js控制轮播图

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

以下是完整网页轮播图完整代码,喜欢的码农可以赋值进行调试使用:

<!DOCTYPE html>

<html>

    <head>

        <meta charset="UTF-8">

        <title></title>

        <style>

            #box{

                width:660px;

                height:330px;

                border:5px solid #e5e5e5;

                margin:20px auto;

                position:relative;

            }

            #img{

                width:660px;

                height:330px;

            }

            #lunbo-title{

                height:40px;

                line-height:40px;

                position:absolute;

                right:15px;

                color:#fff;

                font-size:14px;

            }

            #lunbo-num{

                height:40px;

                line-height:40px;

                position:absolute;

                z-index: 11;

                left:15px;

                color:#fff;

                font-size:14px;

            }

            .wrap-prev-next{

                width:100%;

                height:40px;

                position:absolute;

                z-index: 10;

                background: #000;

                line-height:30px;

                left:0;

                bottom:-20px;

                opacity:0.8;

            }

            .prev-next{

                width:40px;

                height:50px;

                line-height:50px;

                position:absolute;

                top:145px;

                font-size:28px;

                color:#FFF;

                text-decoration:none;

            }

            a:hover {

                opacity:0.3;

             }

            #prev {

                left:5px;

            }

            #next {

                right:5px;

            }

        </style>

         

         

         

    </head>

    <body>

 

        <div id="box">

            <a id="imga" href="" target="_blank">

                <img id="img" />

            </a>

            <!-- <p id="text1"></p><p id="text2">图片文字加载中……</p> -->

            <p class="wrap-prev-next">

                <a id="lunbo-title">图片文字加载中……</a>

                <a id="lunbo-num"></a>

            </p>

            <a id="prev" class="prev-next" href="javascript:void(0)">《</a>

            <a id="next" class="prev-next" href="javascript:void(0)">》</a>

        </div>

    </body>

    <script>

        window.onload= function(){

            var oBox=document.getElementById("box");

            var imga = document.getElementById("imga");

            var oImg=document.getElementById("img");

            var oText1=document.getElementById("lunbo-title");

            var p1=document.getElementById("p1");

            var oText2=document.getElementById("lunbo-num");

            var oPrev=document.getElementById("prev");

            var oNext=document.getElementById("next");

            var arrSrc=[

            "http://p2.cri.cn/M00/98/27/CqgNOlsQRXaAMYcqAAAAAAAAAAA746.660x330.jpg",

            "http://p2.cri.cn/M00/98/27/CqgNOlsQRXaAMYcqAAAAAAAAAAA746.660x330.jpg",

            "http://p2.cri.cn/M00/98/27/CqgNOlsQRXaAMYcqAAAAAAAAAAA746.660x330.jpg",

            "http://p2.cri.cn/M00/98/27/CqgNOlsQRXaAMYcqAAAAAAAAAAA746.660x330.jpg",

            "http://storage.j1home.com/Provider/licensePhoto//%25E7%25A4%25BE%25E4%25BC%259A%25E7%25BB%2584%25E7%25BB%2587/%25E5%2585%25AC%25E7%259B%258A/%25E5%2595%2586%25E5%25AE%25B6/3L%25E7%25BE%258E%25E5%258F%2591%25E6%25B2%2599%25E9%25BE%2599/1509514828534.png",

            "http://p2.cri.cn/M00/98/27/CqgNOlsQRXaAMYcqAAAAAAAAAAA746.660x330.jpg",

            "http://storage.j1home.com/Provider/licensePhoto//%25E7%25A4%25BE%25E4%25BC%259A%25E7%25BB%2584%25E7%25BB%2587/%25E5%2585%25AC%25E7%259B%258A/%25E5%2595%2586%25E5%25AE%25B6/3L%25E7%25BE%258E%25E5%258F%2591%25E6%25B2%2599%25E9%25BE%2599/1509514828534.png"];

            var arrTxt=["文案1","文案2","文案3","文案4","文案5","文案6","文案7"];

            var arrHref=["http://news.cri.cn/20180531/8abbc78f-bfed-db9d-c919-728ecb02e0ef.html",

            "http://news.cri.cn/20180601/c64d3cea-2ca9-5e14-ed79-dad56f3b7a99.html",

            "http://news.cri.cn/20180601/c9aee353-5a34-e908-49d2-995955ef4486.html",

            "http://news.cri.cn/20180531/8abbc78f-bfed-db9d-c919-728ecb02e0ef.html",

            "http://news.cri.cn/20180531/8abbc78f-bfed-db9d-c919-728ecb02e0ef.html",

            "http://news.cri.cn/20180531/8abbc78f-bfed-db9d-c919-728ecb02e0ef.html",

            "http://news.cri.cn/20180531/8abbc78f-bfed-db9d-c919-728ecb02e0ef.html"];

            var num=0;

             

            function lunboFun(){

                imga.href= arrHref[num]; 

                oImg.src = arrSrc[num];

                oText1.innerHTML= num+1 +"/" + arrSrc.length; 

                oText2.innerHTML=arrTxt[num];

                 

            }

            SliderInit();

            oPrev.onclick = function(){

                num--;

                if(num==-1){ 

                    num=arrSrc.length-1;

                }

                lunboFun();

            };

            oNext.onclick = function(){

                num++;

                if(num==arrTxt.length){

                    num=0;

                }

                lunboFun();

            }

 

            function SliderInit() {

                lunboFun();

                setInterval(function(){

                    num ++;

                    if (num==arrSrc.length){

                    num = 0;

                }

                lunboFun();

                },5000);

            }

 

 

        }

    </script>

</html>

  • 3
    点赞
  • 11
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值