Home >Web Front-end >JS Tutorial >js method to add borders to pictures by hovering the mouse_javascript skills
The example in this article describes the js method of adding borders to pictures by hovering the mouse. Share it with everyone 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/11.jpg" width="234" height="368" /> </a><a href="" class="a2"> <img src="images/11.jpg" /> </a><a href="" class="a3"> <img src="images/11.jpg" /> </a> </div>
js code:
<script src="js/jquery-1.9.1.min.js" type="text/javascript"></script> <script src="js/jquery.insetborder.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/download.png) 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 design.