jquery插件-JQuery Corner Gallery (圆角插件)
今天看到一jQuery的插件,比较实用,拿来分享,先看下效果。
介绍地址: http://methvin.com/jquery/jq-corner.html
插件下载地址: http://methvin.com/jquery/jquery.corner.js
使用方法:
1.引入jQuery 和 JQuery Corner Gallery 插件
- <script type="text/javascript" src="jquery.js" ></script>
- <script type="text/javascript" src="jquery.corner.js" ></script>
2.编写测试使用的div和css
- <style>
- .demo{ width:200px;height:50px;text-align:center;background-color:#f90;}
- </style>
- <body>
- <div class="demo"><h1>Round</h1></div>
- </body>
3.编写jQuery(非常简单)
- <script type="text/javascript" >
- $(document).ready( function(){
- $(".demo").corner();
- });
- </script>
搞定,看下效果吧。如果需要更复杂的效果。看一下下面这个地址:
http://methvin.com/jquery/jq-corner-demo.html
如需转载请注明文章来源,本文链接: https://icojump.in/?p=74
这个插件我当时用过,效果相当炫目,但是我记得当时好像出了一个问题。具体名称我忘记了,导致我的页面链接全部失效了。只有将一个属性position全部设成relative后,才恢复,导致我的页面响应速度明显降低。最后只得放弃了。