Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
fade4796
Commit
fade4796
authored
8 years ago
by
John Molakvoæ
Browse files
Options
Downloads
Plain Diff
Merge pull request #23768 from owncloud/skjnldsv-color-generator-edit
Updated color generator
parents
9b930cd0
28571e63
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/js/placeholder.js
+23
-5
23 additions, 5 deletions
core/js/placeholder.js
with
23 additions
and
5 deletions
core/js/placeholder.js
+
23
−
5
View file @
fade4796
...
...
@@ -47,12 +47,23 @@
* <div id="albumart" style="background-color: hsl(123, 90%, 65%); ... ">A</div>
*
*/
/*
* Alternatively, you can use the prototype function to convert your string to hsl colors:
*
* "a6741a86aded5611a8e46ce16f2ad646".toHsl()
*
* Will return the hsl parameters within an array:
*
* [290, 60, 68]
*
*/
(
function
(
$
)
{
$
.
fn
.
imageplaceholder
=
function
(
seed
,
text
,
size
)
{
text
=
text
||
seed
;
var
hash
=
seed
.
toLowerCase
().
replace
(
/
[^
0-9a-f
]
+/g
,
''
);
String
.
prototype
.
toHsl
=
function
()
{
var
hash
=
this
.
toLowerCase
().
replace
(
/
[^
0-9a-f
]
+/g
,
''
);
// Already a md5 hash?
if
(
!
hash
.
match
(
/^
[
0-9a-f
]{32}
$/g
)
)
{
...
...
@@ -103,8 +114,15 @@
if
(
bright
>=
200
)
{
sat
=
60
;
}
var
hue
=
parseInt
(
hsl
[
0
]
*
360
);
this
.
css
(
'
background-color
'
,
'
hsl(
'
+
hue
+
'
,
'
+
sat
+
'
%,
'
+
lum
+
'
%)
'
);
return
[
parseInt
(
hsl
[
0
]
*
360
),
sat
,
lum
];
};
$
.
fn
.
imageplaceholder
=
function
(
seed
,
text
,
size
)
{
text
=
text
||
seed
;
// Compute the hash
var
hsl
=
seed
.
toHsl
();
this
.
css
(
'
background-color
'
,
'
hsl(
'
+
hsl
[
0
]
+
'
,
'
+
hsl
[
1
]
+
'
%,
'
+
hsl
[
2
]
+
'
%)
'
);
// Placeholders are square
var
height
=
this
.
height
()
||
size
||
32
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment