- 浏览: 13731394 次
- 性别:
- 来自: 洛杉矶
文章分类
- 全部博客 (1994)
- Php / Pear / Mysql / Node.js (378)
- Javascript /Jquery / Bootstrap / Web (435)
- Phone / IOS / Objective-C / Swift (137)
- Ubuntu / Mac / Github / Aptana / Nginx / Shell / Linux (335)
- Perl / Koha / Ruby / Markdown (8)
- Java / Jsp (12)
- Python 2 / Wxpython (25)
- Codeigniter / CakePHP (32)
- Div / Css / XML / HTML5 (179)
- WP / Joomla! / Magento / Shopify / Drupal / Moodle / Zimbra (275)
- Apache / VPN / Software (31)
- AS3.0/2.0 / Flex / Flash (45)
- Smarty (6)
- SEO (24)
- Google / Facebook / Pinterest / SNS (80)
- Tools (22)
最新评论
-
1455975567:
xuezhongyu01 写道wocan23 写道我想问下那个 ...
Mysql: LBS实现查找附近的人 (两经纬度之间的距离) -
xuezhongyu01:
wocan23 写道我想问下那个111.1是怎么得来的我也看不 ...
Mysql: LBS实现查找附近的人 (两经纬度之间的距离) -
18335864773:
试试 pageoffice 在线打开 PDF 文件吧. pag ...
jquery在线预览PDF文件,打开PDF文件 -
青春依旧:
opacity: 0.5; 个人喜欢这种方式!关于其他css特 ...
css透明度的设置 (兼容所有浏览器) -
July01:
推荐用StratoIO打印控件,浏览器和系统的兼容性都很好,而 ...
搞定网页打印自动分页问题
Rounded corners without images. Plus lots of other corner adornments.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <title>JQuery Corner Demo</title> <style type="text/css"> body { font: Verdana,Arial,sans-serif; /* An explicit background color is required for Safari. */ /* Otherwise your corner chunks will come out black! */ background: #f8f0e0; } div.section { clear: left; } h1 { font-size: 150%; padding: 0 } h2 { background: #ccc; padding: 1px 20px; } div.demo { float: left; width: 18em; padding: 20px; margin: 1em; background: #c92; color:#000; text-align: center; font: verdana, arial, sans-serif; } div.fun { margin: 2px; } </style> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="jquery.corner.js"></script> <script type="text/javascript"> $(function(){ // shorthand for $(document).ready() BTW $('div.demo').each(function() { // The text of the paragraphs in the rounded divs is also the // jQuery code needed to create that effect. Cosmic. eval($('p', this).text()); }); $('#main p').wrap("<code></code>"); }); </script> </head> <body> <h1>jQuery Corner Demo</h1> <p>Now with more effects, thanks to <a href="http://www.malsup.com/jquery/corner/">Mike Alsup</a>!</p> <p><a href="jq-corner.html">How does this work? How do I use it?</a></p> <p><a href="jquery.corner.js">Just the source, please!</a></p> <div id="main"> <div class="section"> <h1>Available Corner Effects</h1> </div> <div class="demo"><h1>Round</h1> <p>$(this).corner();</p></div> <div class="demo"><h1>Bevel</h1> <p>$(this).corner("bevel");</p></div> <div class="demo"><h1>Notch</h1> <p>$(this).corner("notch");</p></div> <div class="demo"><h1>Bite</h1> <p>$(this).corner("bite");</p></div> <div class="demo"><h1>Cool</h1> <p>$(this).corner("cool");</p></div> <div class="demo"><h1>Sharp</h1> <p>$(this).corner("sharp");</p></div> <div class="demo"><h1>Slide</h1> <p>$(this).corner("slide");</p></div> <div class="demo"><h1>Jut</h1> <p>$(this).corner("jut");</p></div> <div class="demo"><h1>Curl</h1> <p>$(this).corner("curl");</p></div> <div class="demo"><h1>Tear</h1> <p>$(this).corner("tear");</p></div> <div class="demo"><h1>Fray</h1> <p>$(this).corner("fray");</p></div> <div class="demo"><h1>Wicked</h1><p>$(this).corner("wicked");</p></div> <div class="demo"><h1>Sculpt</h1><p>$(this).corner("sculpt");</p></div> <div class="demo"><h1>Long</h1> <p>$(this).corner("long");</p></div> <div class="demo"><h1>Dog Ear</h1><p>$(this).corner("dog");</p></div> <div class="demo"><h1>Dog2</h1><p>$(this).corner("dog2");</p></div> <div class="demo"><h1>Dog3</h1><p>$(this).corner("dog3");</p></div> <div class="section"> <h1>Choose Your Corner</h1> <h2>Use <code>top, bottom, tl, tr, bl, br</code> to identify which corner to style</h2> </div> <div class="demo"><h1>Top Bevel</h1> <p>$(this).corner("bevel top");</p></div> <div class="demo"><h1>Top-Left Bite</h1> <p>$(this).corner("bite tl");</p></div> <div class="demo"><h1>Round Bottom</h1> <p>$(this).corner("bottom");</p></div> <div class="demo"><h1>Bottom-Left Notch</h1><p>$(this).corner("notch bl");</p></div> <div class="demo"><h1>Top-Right Dog Ear</h1><p>$(this).corner("dog tr");</p></div> <div class="demo"><h1>Top-Left, Bottom-Right Cool</h1><p>$(this).corner("cool tl br");</p></div> <div class="section"> <h1>Specify Size</h1> <h2>Include a px value to specify the corner size</h2> </div> <div class="demo"><h1>Round 30px</h1> <p>$(this).corner("30px");</p></div> <div class="demo"><h1>Round 5px</h1> <p>$(this).corner("5px");</p></div> <div class="demo"><h1>Cool 20px</h1> <p>$(this).corner("cool 20px");</p></div> <div class="demo"><h1>Sharp 20px</h1> <p>$(this).corner("sharp 20px");</p></div> <div class="demo"><h1>Bite 30px</h1> <p>$(this).corner("bite 30px");</p></div> <div class="demo"><h1>Wicked 20px</h1><p>$(this).corner("wicked 20px");</p></div> <div class="demo"><h1>Dog 20px</h1><p>$(this).corner("dog 20px");</p></div> <div class="demo"><h1>Dog2 30px</h1><p>$(this).corner("dog2 30px");</p></div> <div class="demo"><h1>Dog3 30px</h1><p>$(this).corner("dog3 30px");</p></div> <div class="section"> <h1>Mix and Match</h1> <h2>Chain corner calls to achieve combined effects</h2> </div> <div class="demo"><h1>Round and Bevel</h1><p>$(this).corner( "bottom").corner("top bevel");</p></div> <div class="demo"><h1>Round and Notch</h1><p>$(this).corner( "br top").corner("notch bl 20px");</p></div> <div class="demo"><h1>Crazy</h1> <p>$(this).corner("jut tl 20px").corner("dog tr 20px").corner("bite bl 15px").corner("notch br");</p></div> <div class="section"> <h1>Fun Stuff</h1> <h2>Interesting Side Effects</h2> </div> <div class="demo fun"><h1>Left Half of Arrow</h1> <p>$(this).corner("sharp tr br 20px");</p></div> <div class="demo fun"><h1>Right Half of Arrow</h1><p>$(this).corner("sharp tl bl 20px");</p></div> </div> <!-- main --> </body> </html>
- jquery.corner.rar (2.3 KB)
- 下载次数: 75
发表评论
-
使用jQuery和Pure.CSS创建一个可编辑的表格
2016-08-26 02:24 1236使用开源组件真的可以 ... -
2016十大优秀jQuery插件推荐
2016-08-26 02:24 2339当有限的开发知识限制了设计进展,你无法为自己插上创新的翅膀时 ... -
jQuery .tmpl() 用法
2016-08-26 02:22 1221参考效果: DEMO 下载: jquery-tmpl-ma ... -
jQuery:从零开始,DIY一个jQuery(2)
2016-08-19 03:06 1062在上篇文章我们简单实 ... -
jQuery:从零开始,DIY一个jQuery(1)
2016-08-19 03:00 995从本篇开始会陪大家一起从零开始走一遍 jQuery 的奇妙旅 ... -
Bootstrap 3: 菜单居中 Center content in responsive bootstrap navbar
2016-08-18 06:15 1597先看上面图片的效果,下面是代码: .navbar .nav ... -
jQuery: 操作select option方法集合
2016-08-18 06:06 3351每一次操作select的时候,总是要谷歌一下资料,真是太不爽 ... -
jQuery: 插件开发模式详解 $.extend(), $.fn, $.widget()
2016-08-16 05:31 1252原文:http://www.codeceo.com/arti ... -
jQuery: 选择器(DOM,name,属性,元素)
2016-08-11 01:17 4515出处:http://www.cnblogs.com/star ... -
jQuery: 合并表格中相同文本的相邻单元格
2016-08-01 08:02 1387一、效果 二、代码 <!DOCTYPE ... -
Bootstrap 3: 使用注意box-sizing细节及解决方法
2016-08-01 07:58 1603一、bootstrap样式 在Bootstrap v3.3 ... -
域名详解
2016-07-29 12:51 863域名 域名就是用来唯 ... -
Bootstrap 3: 图标转换事件 Change icons when toggle
2016-07-20 13:39 2323代码: <link href="http: ... -
Bootstrap 3: 图标转换事件 Change icons when toggle
2016-07-19 07:12 766代码: <link href=" ... -
jQuery:无限循环两个或者多个事件 click / toggle between two functions
2016-07-19 07:12 1646插件: (function($) { $.fn. ... -
javascript 中面向对象实现 如何继承
2016-07-14 01:01 548上一篇博客已经说了关于javascript中的封装, 其中也 ... -
javascript 中的面向对象实现 如何封装
2016-07-12 12:27 1229javascript 是一门很灵活的语言,也是一门有缺陷的语 ... -
AngularJS jQuery 共存法则
2016-06-14 05:26 3628寻找正确的方法,如何在AngularJS里使用jQuery ... -
七步从Angular.JS菜鸟到专家(3):数据绑定和AJAX
2016-06-04 05:28 1165AngularJS学习列表:七步 ... -
七步从Angular.JS菜鸟到专家(2):Scopes
2016-06-04 05:27 736AngularJS学习列表:七步走 Angular.js 从 ...
相关推荐
jQuery圆角插件就是为了解决这样的需求而存在的。它允许开发者轻松地为网页元素添加圆角效果,无需手动编写复杂的CSS3代码,大大提高了开发效率。 jQuery是一种广泛使用的JavaScript库,它简化了JavaScript的DOM...
jQuery圆角插件,如`jquery.corners.js`,是前端开发中常见的一种工具,用于在网页元素上实现圆角效果。在Web设计中,圆角可以为界面增添柔和感和现代感,使得用户界面更加友好。在CSS3之前,创建圆角效果通常需要...
而`jquery.corners.js`则是jQuery圆角插件的主要脚本,它包含实现圆角效果的函数和逻辑。 在页面中引入这些文件后,可以通过jQuery选择器选取需要添加圆角效果的元素,并调用`.corners()`方法来应用插件。例如: `...
而jQuery圆角插件则进一步扩展了这些功能,使得开发者能够为任何元素添加圆角,无论是静态页面还是动态加载的内容。通过这款插件,你可以为按钮、表单、面板等各种元素设置不同大小、颜色和样式的圆角,从而提升网页...
**jQuery圆角插件开发详解** 在Web前端开发中,我们常常需要为页面元素添加圆角效果,以提升用户体验和视觉美观。在CSS3中,我们可以直接使用`border-radius`属性来实现,但在不支持CSS3的老版本浏览器中,如IE6、7...
在jQuery的基础上,有许多插件被开发出来,以实现更多特定的效果,比如“jQuery圆角插件”。 jQuery圆角插件(jQuery Corner)是专门用于为HTML元素添加圆角效果的工具。它通过CSS3的border-radius属性来实现,对于...
在jQuery-corners插件中,我们可以看到它提供的主要功能是通过CSS3的border-radius属性来实现元素的圆角效果,对于不支持此属性的老版本浏览器,它会使用内嵌的图片或者JavaScript动态创建元素来模拟圆角。...
但是这些方法在实现的过程中,总是会增加很多无谓的工作任务,而且还有可能无法做到浏览器之间的兼容性,那么就介绍一个非常简单的jQuery圆角实现效果吧,说是圆角有点小看它了,因为它可以实现的不止是圆角,看这...
然而,随着jQuery圆角插件的出现,这个问题得到了显著的解决。 首先,我们需要理解jQuery的核心概念。jQuery是一个轻量级的JavaScript库,它简化了HTML文档遍历、事件处理、动画和Ajax交互。它的API设计易于理解和...
jquery corners 圆角插件,用于修饰各种各样的角为圆角,比如Div边框、TAB按钮、区域边框等,以前有款圆角插件同样也是基于jquery的,好像叫做jQuery Corner,名字也很有相似哦,有希望的可以看看这两款有何不同,...
例如,本文提到的jQuery圆角插件就是利用jQuery来实现对DOM的操作,改变元素的样式,实现圆角效果。 知识点二:jQuery插件的开发 jQuery插件就是使用jQuery的API,利用jQuery的设计模式,对jQuery对象进行扩展,为...
**jQuery圆角插件简介** 在网页设计中,圆角是一种常见的视觉效果,可以增加页面的美观度和现代感。在HTML和CSS早期,实现圆角并非易事,需要使用复杂的CSS hack或图像来达到目的。然而,随着jQuery的普及和CSS3的...
一种常见的jQuery圆角插件是`jQuery.corner()`,它允许开发者通过简单的API调用来为元素添加圆角。例如,`$("#element").corner("10px");`就能将ID为`element`的元素的四角设置为10像素的圆角。插件通常会通过动态...
7. **兼容性检查**: 虽然jQuery圆角插件提高了兼容性,但仍然建议检测用户的浏览器是否支持CSS3的`border-radius`,如果支持则直接使用CSS,否则再依赖JavaScript插件。 8. **结合其他CSS3属性**:CSS3的`border-...
本资源“jQuery圆角边框网页分页插件.zip”提供了一个实用的jQuery插件,用于在网页中实现具有圆角边框的分页效果。这个插件可以帮助开发者快速创建美观且易于使用的网页分页组件,提升用户体验。 首先,我们需要...
jQuery Corner是一款针对jQuery框架设计的插件,专门用于创建页面元素的圆角效果。在CSS3之前,实现圆角效果通常需要复杂的切图技巧或使用图片作为边角,这无疑增加了前端开发的工作量。然而,jQuery Corner的出现...