Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
殷洪(管理员)
/
raphael
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Registry
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
1bf5b16d
authored
Mar 08, 2010
by
Dmitry Baranovskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A fix. Wrong files were commited last time
parent
d79aba6b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 additions
and
49 deletions
+1
-49
plugins/colorwheel.js
+0
-0
plugins/jquery.colorwheel.js
+1
-7
plugins/raphael.blur.js
+0
-42
No files found.
plugins/colorwheel.js
View file @
1bf5b16d
This diff is collapsed.
Click to expand it.
plugins/jquery.colorwheel.js
View file @
1bf5b16d
/*!
* Color Wheel 0.1.0 - Raphael plugin
*
* Copyright (c) 2010 John Weir (http://famedriver.com) & Dmitry Baranovskiy (http://raphaeljs.com)
* Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license.
*/
(
function
(
$
,
R
)
{
$
.
fn
.
colorwheel
=
function
(
size
,
initcolor
)
{
if
(
R
)
{
var
offset
=
this
.
offset
();
return
R
.
color
picker
(
offset
.
left
,
offset
.
top
,
size
,
initcolor
,
this
[
0
]);
return
R
.
color
wheel
(
offset
.
left
,
offset
.
top
,
size
,
initcolor
,
this
[
0
]);
}
return
null
;
};
...
...
plugins/raphael.blur.js
deleted
100644 → 0
View file @
d79aba6b
/*!
* Raphael Blur Plugin 0.1
*
* Copyright (c) 2009 Dmitry Baranovskiy (http://raphaeljs.com)
* Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license.
*/
if
(
Raphael
.
vml
)
{
Raphael
.
el
.
blur
=
function
(
size
)
{
var
s
=
this
.
node
.
style
,
f
=
s
.
filter
;
f
=
f
.
replace
(
/ progid:
\S
+Blur
\([^\)]
+
\)
/g
,
""
);
if
(
size
!=
"none"
)
{
s
.
filter
=
f
+
" progid:DXImageTransform.Microsoft.Blur(pixelradius="
+
(
+
size
||
1.5
)
+
")"
;
s
.
margin
=
Raphael
.
format
(
"-{0}px 0 0 -{0}px"
,
Math
.
round
(
+
size
||
1.5
));
}
else
{
s
.
filter
=
f
;
s
.
margin
=
0
;
}
};
}
else
{
Raphael
.
el
.
blur
=
function
(
size
)
{
// Experimental. No WebKit support.
if
(
size
!=
"none"
)
{
var
fltr
=
$
(
"filter"
),
blur
=
$
(
"feGaussianBlur"
);
fltr
.
id
=
"r"
+
(
Raphael
.
idGenerator
++
).
toString
(
36
);
$
(
blur
,
{
stdDeviation
:
+
size
||
1.5
});
fltr
.
appendChild
(
blur
);
this
.
paper
.
defs
.
appendChild
(
fltr
);
this
.
_blur
=
fltr
;
$
(
this
.
node
,
{
filter
:
"url(#"
+
fltr
.
id
+
")"
});
}
else
{
if
(
this
.
_blur
)
{
this
.
_blur
.
parentNode
.
removeChild
(
this
.
_blur
);
delete
this
.
_blur
;
}
this
.
node
.
removeAttribute
(
"filter"
);
}
};
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment