`
jiasongmao
  • 浏览: 670894 次
  • 性别: Icon_minigender_1
  • 来自: 石家庄
社区版块
存档分类
最新评论

JS实现圆角效果

阅读更多
该插件能实现各种效果的圆角。
需要的JS文件jquery.corner.js代码如下:
jQuery.fn.corner = function(o) {
    function hex2(s) {
        var s = parseInt(s).toString(16);
        return ( s.length < 2 ) ? '0'+s : s;
    };
    function gpc(node) {
        for ( ; node && node.nodeName.toLowerCase() != 'html'; node = node.parentNode  ) {
            var v = jQuery.css(node,'backgroundColor');
            if ( v.indexOf('rgb') >= 0 ) { 
                rgb = v.match(/\d+/g); 
                return '#'+ hex2(rgb[0]) + hex2(rgb[1]) + hex2(rgb[2]);
            }
            if ( v && v != 'transparent' )
                return v;
        }
        return '#ffffff';
    };
    function getW(i) {
        switch(fx) {
        case 'round':  return Math.round(width*(1-Math.cos(Math.asin(i/width))));
        case 'cool':   return Math.round(width*(1+Math.cos(Math.asin(i/width))));
        case 'sharp':  return Math.round(width*(1-Math.cos(Math.acos(i/width))));
        case 'bite':   return Math.round(width*(Math.cos(Math.asin((width-i-1)/width))));
        case 'slide':  return Math.round(width*(Math.atan2(i,width/i)));
        case 'jut':    return Math.round(width*(Math.atan2(width,(width-i-1))));
        case 'curl':   return Math.round(width*(Math.atan(i)));
        case 'tear':   return Math.round(width*(Math.cos(i)));
        case 'wicked': return Math.round(width*(Math.tan(i)));
        case 'long':   return Math.round(width*(Math.sqrt(i)));
        case 'sculpt': return Math.round(width*(Math.log((width-i-1),width)));
        case 'dog':    return (i&1) ? (i+1) : width;
        case 'dog2':   return (i&2) ? (i+1) : width;
        case 'dog3':   return (i&3) ? (i+1) : width;
        case 'fray':   return (i%2)*width;
        case 'notch':  return width; 
        case 'bevel':  return i+1;
        }
    };
    o = (o||"").toLowerCase();
    var keep = /keep/.test(o);                       // keep borders?
    var cc = ((o.match(/cc:(#[0-9a-f]+)/)||[])[1]);  // corner color
    var sc = ((o.match(/sc:(#[0-9a-f]+)/)||[])[1]);  // strip color
    var width = parseInt((o.match(/(\d+)px/)||[])[1]) || 10; // corner width
    var re = /round|bevel|notch|bite|cool|sharp|slide|jut|curl|tear|fray|wicked|sculpt|long|dog3|dog2|dog/;
    var fx = ((o.match(re)||['round'])[0]);
    var edges = { T:0, B:1 };
    var opts = {
        TL:  /top|tl/.test(o),       TR:  /top|tr/.test(o),
        BL:  /bottom|bl/.test(o),    BR:  /bottom|br/.test(o)
    };
    if ( !opts.TL && !opts.TR && !opts.BL && !opts.BR )
        opts = { TL:1, TR:1, BL:1, BR:1 };
    var strip = document.createElement('div');
    strip.style.overflow = 'hidden';
    strip.style.height = '1px';
    strip.style.backgroundColor = sc || 'transparent';
    strip.style.borderStyle = 'solid';
    return this.each(function(index){
        var pad = {
            T: parseInt(jQuery.css(this,'paddingTop'))||0,     R: parseInt(jQuery.css(this,'paddingRight'))||0,
            B: parseInt(jQuery.css(this,'paddingBottom'))||0,  L: parseInt(jQuery.css(this,'paddingLeft'))||0
        };

        if (jQuery.browser.msie) this.style.zoom = 1; // force 'hasLayout' in IE
        if (!keep) this.style.border = 'none';
        strip.style.borderColor = cc || gpc(this.parentNode);
        var cssHeight = jQuery.curCSS(this, 'height');

        for (var j in edges) {
            var bot = edges[j];
            strip.style.borderStyle = 'none '+(opts[j+'R']?'solid':'none')+' none '+(opts[j+'L']?'solid':'none');
            var d = document.createElement('div');
            var ds = d.style;

            bot ? this.appendChild(d) : this.insertBefore(d, this.firstChild);

            if (bot && cssHeight != 'auto') {
                if (jQuery.css(this,'position') == 'static')
                    this.style.position = 'relative';
                ds.position = 'absolute';
                ds.bottom = ds.left = ds.padding = ds.margin = '0';
                if (jQuery.browser.msie)
                    ds.setExpression('width', 'this.parentNode.offsetWidth');
                else
                    ds.width = '100%';
            }
            else {
                ds.margin = !bot ? '-'+pad.T+'px -'+pad.R+'px '+(pad.T-width)+'px -'+pad.L+'px' : 
                                    (pad.B-width)+'px -'+pad.R+'px -'+pad.B+'px -'+pad.L+'px';                
            }

            for (var i=0; i < width; i++) {
                var w = Math.max(0,getW(i));
                var e = strip.cloneNode(false);
                e.style.borderWidth = '0 '+(opts[j+'R']?w:0)+'px 0 '+(opts[j+'L']?w:0)+'px';
                bot ? d.appendChild(e) : d.insertBefore(e, d.firstChild);
            }
        }
    });
};

测试用的HTML文件:
<!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">
<!-- saved from url=(0014)about:internet -->
<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 by http://www.codefans.net</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 download by http://www.codefans.net(OLD)</h1>

<p><b>
For the most recent version of this plugin, go to
<a href="http://www.malsup.com/jquery/corner/">http://www.malsup.com/jquery/corner/</a>
</b></p>

<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>
分享到:
评论

相关推荐

    JS实现DIV、图片圆角效果

    为了确保在各种浏览器中都能实现圆角效果,我们需要借助JavaScript来辅助处理。 JS实现圆角效果主要有两种方式:一是通过动态创建CSS样式,二是通过修改DOM元素的HTML结构。下面我们将分别探讨这两种方法: 1. **...

    用js实现css3效果的圆角方法

    随着CSS3的普及,我们可以直接通过CSS的`border-radius`属性轻松实现圆角效果。然而,有些浏览器可能不支持CSS3,或者在某些特定情况下,我们需要用JavaScript来动态调整圆角。本文将探讨如何用JavaScript来实现CSS3...

    JS实现图片改成圆角效果

    总的来说,使用JavaScript实现图片圆角效果涉及到CSS样式设置、DOM操作以及事件监听等多个方面,理解这些知识点对于网页开发非常重要。通过灵活运用这些技术,我们可以创造出更加美观且适应性强的网页界面。

    css+js圆角 分享啦

    `nifty10js.html`、`nifty10nojs.html`、`nifty2js.html`等文件可能是包含JavaScript实现圆角效果的HTML示例。这些文件通过引入JavaScript库(可能存在于压缩包的其他未列出文件中),在不支持CSS3的浏览器中动态...

    ie js实现圆角

    在网页设计中,实现圆角效果是常见的需求,但在早期的IE浏览器中,由于CSS3标准的支持不足,单纯使用CSS无法很好地实现这一效果。本文将详细介绍如何使用JavaScript(包括jQuery库)来解决IE浏览器的圆角问题。 ...

    Jquery实现圆角边框效果的源码

    在这个场景中,我们将探讨如何使用jQuery来实现圆角边框效果。 首先,`jquery.curvycorners.source.js`、`jquery.curvycorners.min.js` 和 `jquery.curvycorners.packed.js` 这三个文件是jQuery圆角边框插件的不同...

    js实现div、图片圆角效果

    超简单实用JS实现DIV、图片圆角效果 &lt;!--[if lte IE 9]&gt; &lt;script type="text/javascript" src="DD_roundies_0.0.2a.js"&gt; &lt;script type="text/javascript"&gt; DD_roundies.addRule('.websjy1', '5px 20px 3px 10px', ...

    js解决圆角兼容

    为了解决这个问题,开发者开始使用JavaScript库和自定义函数来实现圆角效果的兼容性。 1. **JavaScript实现圆角的基本思路** - 使用JavaScript动态创建元素:通过在元素内部插入额外的DOM元素,如`div`或`span`,...

    JS+CSS实现矩形对象的圆角效果

    以下是一个简单的示例,通过JavaScript动态修改元素的样式来实现圆角效果: ```javascript function addRoundedCorners(element, radius) { element.style.borderTopLeftRadius = radius + 'px'; element.style....

    js实现div布局圆角效果

    超简单实用JS实现DIV、图片圆角效果 兼容性很好

    javascript实现的圆角提示框

    在这个圆角提示框的实现中,JavaScript可能被用来监听用户的鼠标悬停事件,当鼠标停留在特定元素上时,显示提示框;当鼠标离开时,隐藏提示框。 ```javascript // 获取要添加提示框的元素 var element = document....

    js圆角框组件(图片)

    总的来说,"js圆角框组件(图片)"这个知识点涵盖了使用CSS3的`border-radius`属性和JavaScript实现圆角效果的方法。在实际开发中,开发者应根据目标用户的浏览器兼容性需求来选择合适的技术。对于新项目,优先考虑...

    jquery实现圆角实例

    jQuery 插件如 "jQuery.corner" 或 "jQuery.roundCorners" 可以帮助我们在这些浏览器中实现圆角效果。但随着技术的发展,如今大多数浏览器都已经支持 CSS3,因此直接使用 CSS3 实现圆角更为推荐。 如果仍需使用 ...

    div+css实现圆角导航菜单的效果

    为了实现圆角效果,我们需要使用`border-radius`属性。这个属性允许我们设置元素边框的圆角半径,从而创造出圆形或椭圆形的边角。例如,如果我们希望导航菜单的每个项都有10像素的圆角,我们可以这样写CSS: ```css...

    CSS+JS实现的圆角边框TAB选项卡滑动门代码

    "滑动门"是一种JavaScript实现的动画效果,它通过改变元素的尺寸或位置来创建平滑过渡,增强用户体验。 在"CSS+JS实现的圆角边框TAB选项卡滑动门代码"实例中,我们将深入探讨以下关键知识点: 1. **CSS圆角边框**...

    圆角的实现方式,CSS+JS

    另外,一些库如jQuery Corner或Rounded Corners lite提供更方便的API来实现圆角效果,但它们可能对性能有一定影响,特别是在大量元素上应用时。 总结来说,实现圆角效果主要依赖CSS3的`border-radius`属性,对于老...

    jQuery圆角插件,实现兼容浏览器圆角效果

    W3C很早就已经在CSS 3 中加入了圆角属性border-radius,但是由于某些流行浏览器的不支持,使得其还是没能被广泛使用,所以我们会想尽办法去进行更好的补充,包括背景图片的圆角实现、js圆角实现等等。但是这些方法在...

    DIV圆角的js实现

    本篇文章将详细介绍如何通过JavaScript(JS)和HTML中的DIV元素的绝对定位来实现圆角效果。 首先,我们要理解CSS中的边框半径属性`border-radius`,这是CSS3引入的一个特性,可以直接为元素设置圆角。但在不支持CSS...

Global site tag (gtag.js) - Google Analytics