SoFunction
Updated on 2025-02-28

JS implements the method of adding borders to images by mouse suspension

This article describes the method of using js to implement mouse suspension to add borders to images. Share it for your reference. The specific implementation method is as follows:

html code:

<div class="T-s-l fl"> 
 <a href="" class="a1"> 
  <img src="images/" width="234" height="368" /> 
 </a><a href="" class="a2"> 
  <img src="images/" /> 
 </a><a href="" class="a3"> 
  <img src="images/" /> 
 </a> 
</div>

js code:

<script src="js/jquery-1.9." type="text/javascript"></script> 
<script src="js/" type="text/javascript"></script> 
<script type="text/javascript"> 
 $(document).ready(function () { 
  //border 
 $(".T-s-l a.a1").borderEffect(); 
 $(".a1").borderEffect(); 
 $(".T-s-l a.a2").borderEffect({ borderColor: '#e80484' }); 
 $(".T-s-l a.a3").borderEffect({ borderColor: '#7b7b7b', speed: 300, borderWidth: 10 }); 
 }); 
</script>

css code:

.T-s-l a{background:url(images/) no-repeat -10px 20px #fff;} 
.T-s-l{width:952px;overflow:hidden;} 
.T-s-l a{float:left; width:234px;height:368px;margin:0 19px 17px 0;font-size:0;overflow:hidden;}

I hope this article will be helpful to everyone's JavaScript programming.