!
也想出现在这里? 联系我们
广告位

Javascript 实现虚线边框旋转效果

看到百度 ueditor 编辑器网站首页,底部有一个滚动虚框的效果(原谅我不会做 gif 图),如图:

就去看了一下,开始以为是 CSS,后来打开 F12 ,哦原来是 js,那就尝试写一下吧。

HTML 部分

  1. <div class="box">
  2. <div class="topBorder" id="J_borTop"></div>
  3. <div class="leftBorder" id="J_borLeft"></div>
  4. <div class="rightBorder" id="J_borRight"></div>
  5. <div class="bottomBorder" id="J_borBottom"></div>
  6. 内容区
  7. </div>

CSS 部分:

  1. .box{
  2. position: relative;
  3. width: 1000px;
  4. height: 400px;
  5. line-height: 400px;
  6. margin: 0 auto;
  7. text-align:center;
  8. font-size: 40px;
  9. background: #ffffff;
  10. overflow: hidden;
  11. }
  12. .topBorder{
  13. position: relative;
  14. width:3000px;
  15. border-top: 2px dashed #dddddd;
  16. }
  17. .leftBorder{
  18. position: absolute;
  19. width: 1px;
  20. height: 40000px;
  21. border-left:2px dashed #dddddd;
  22. }
  23. .rightBorder{
  24. position: absolute;
  25. right:0;
  26. width:1px ;
  27. height: 3000px;
  28. border-right: 2px dashed #dddddd;
  29. }
  30. .bottomBorder{
  31. position: absolute;
  32. width:40000px;
  33. bottom:0;
  34. border-bottom: 2px dashed #dddddd;
  35. }

js 部分:

  1. <script>
  2. border_move();
  3. //获取样式
  4. function getStyleValue(ele,attr){
  5. var doc=document;
  6. var style=ele.currentStyle||doc.defaultView.getComputedStyle(ele,null);
  7. return parseInt(style[attr].replace(/px/g,""));
  8. }
  9. // 边框旋转
  10. function border_move(){
  11. var borderT = document.getElementById("J_borTop"),
  12. borderL = document.getElementById("J_borLeft"),
  13. borderR = document.getElementById("J_borRight"),
  14. borderB = document.getElementById("J_borBottom");
  15. var left = getStyleValue(borderT,"left"),
  16. top = getStyleValue(borderL,"top");
  17. setInterval(function(){
  18. if(left < 0){
  19. left += 2;
  20. borderR.style.top = left + 'px';
  21. borderT.style.left = left + 'px';
  22. }else{
  23. left = -1500;
  24. }
  25. if(top > -3000){
  26. top -= 2;
  27. borderB.style.left = top + 'px';
  28. borderL.style.top = top +'px';
  29. }else{
  30. top = -1500;
  31. }
  32. },60)
  33. }
  34. </script>

效果就不展示了,可以复制代码运行查看一下非常简单的效果,学无止境一点点积累。

给TA打赏
共{{data.count}}人
人已打赏
前端学习

JS判断浏览器环境(pc端,移动端,还是微信浏览器)

2024-9-4 17:44:30

前端学习

两行CSS代码实现最简单瀑布流实现方式

2024-9-6 17:44:18

下载说明

  • 1、微码盒所提供的压缩包若无特别说明,解压密码均为weimahe.com
  • 2、下载后文件若为压缩包格式,请安装7Z软件或者其它压缩软件进行解压;
  • 3、文件比较大的时候,建议使用下载工具进行下载,浏览器下载有时候会自动中断,导致下载错误;
  • 4、资源可能会由于内容问题被和谐,导致下载链接不可用,遇到此问题,请到文章页面进行反馈,以便微码盒及时进行更新;
  • 5、其他下载问题请自行搜索教程,这里不一一讲解。

站长声明

本站大部分下载资源收集于网络,只做学习和交流使用,版权归原作者所有;若为付费资源,请在下载后24小时之内自觉删除;若作商业用途,请到原网站购买;由于未及时购买和付费发生的侵权行为,与本站无关。本站发布的内容若侵犯到您的权益,请联系本站删除,我们将及时处理!
0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索