jQuery实现流动虚线框的方法

前端之家收集整理的这篇文章主要介绍了jQuery实现流动虚线框的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了jQuery实现流动虚线框的方法分享给大家供大家参考。具体分析如下:

百度UEditor的首页看到一个流动的虚线框的效果,所以自己用jQuery尝试也写一个,效果如下:

css:

Box{width:500px;height:100px;overflow:hidden;position:relative;} .dashed-top{width:2000px;height:0px;border-bottom:2px #ccc dashed;position:absolute;top:0;left:-1400px;} .dashed-left{width:0px;height:2000px;border-left:2px #ccc dashed;position:absolute;left:0;top:-1600px;} .dashed-bottom{width:2000px;height:0px;border-bottom:2px #ccc dashed;position:absolute;left:0px;bottom:0;} .dashed-right{width:0px;height:2000px;border-left:2px #ccc dashed;position:absolute;right:0;top:-1600px;}

HTML:

<div class="jb51code">
<pre class="brush:xhtml;">
<div class="dashed-Box">
<div class="dashed-top">


<div class="dashed-left">

<div class="dashed-right">

<div class="dashed-bottom">

jQuery:

if($top>-1000){
$top-=2;
}else{
$top=0;
}
$(".dashed-top").css("left",$left+"px");
$(".dashed-right").css("top",$left+"px");
$(".dashed-bottom").css("left",$top+"px");
$(".dashed-left").css("top",$top+"px");
},60);

希望本文所述对大家的jQuery程序设计有所帮助。

原文链接:https://www.f2er.com/jquery/56016.html
jQuery方法方法方法流动虚线框

猜你在找的jQuery相关文章