Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to write the code for JavaScript to make a broadcast map?

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

这篇文章主要介绍了JavaScript制作轮播图的代码怎么写的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇JavaScript制作轮播图的代码怎么写文章都会有所收获,下面我们一起来看看吧。

具体代码如下

.container{ position: absolute; left: 0; top:0; width: 100%; overflow: hidden; border:1px solid #c3c3c3; border-radius: 4px; } .block1{ margin:0; padding: 0; display: inline-block; height: 400px; background-color: #008800; } .block2{ margin:0; padding: 0; display: inline-block; height: 400px; background-color: #ffff00; } .block3{ margin:0; padding: 0; display: inline-block; height: 400px; background-color: #FF9900; } var wt=window.innerWidth; $(".block1").css({width:wt}); $(".block2").css({width:wt,left:wt}); $(".block3").css({width:wt,left:wt*2}); var aa=setInterval(function(){ $(".block1").css({left:parseFloat($(".block1")[0].style.left)-1}); $(".block2").css({left:parseFloat($(".block2")[0].style.left)-1}); $(".block3").css({left:parseFloat($(".block3")[0].style.left)-1}); if($(".block3")[0].style.left=="0px"){// clearInterval(aa);// 清除循环滚动 $(".block1").css({left:0}) $(".block2").css({left:wt}) $(".block3").css({left:wt*2}) } },2)关于"JavaScript制作轮播图的代码怎么写"这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对"JavaScript制作轮播图的代码怎么写"知识都有一定的了解,大家如果还想学习更多知识,欢迎关注行业资讯频道。

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report