nextcloud/core/js/placeholder.js

74 lines
2.2 KiB
JavaScript
Raw Normal View History

2013-08-28 18:25:14 +04:00
/**
* ownCloud
*
* @author Morris Jobke
* @copyright 2013 Morris Jobke <morris.jobke@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
/*
2013-08-29 01:04:55 +04:00
* Adds a background color to the element called on and adds the first character
2013-08-28 18:25:14 +04:00
* of the passed in string. This string is also the seed for the generation of
* the background color.
*
* You have following HTML:
*
* <div id="albumart"></div>
*
* And call this from Javascript:
*
* $('#albumart').imageplaceholder('The Album Title');
2013-08-28 18:25:14 +04:00
*
* Which will result in:
*
2013-09-02 20:29:16 +04:00
* <div id="albumart" style="background-color: hsl(123, 90%, 65%); ... ">T</div>
2013-08-28 18:25:14 +04:00
*
* You may also call it like this, to have a different background, than the seed:
*
* $('#albumart').imageplaceholder('The Album Title', 'Album Title');
*
* Resulting in:
*
* <div id="albumart" style="background-color: hsl(123, 90%, 65%); ... ">A</div>
*
2013-08-28 18:25:14 +04:00
*/
(function ($) {
$.fn.imageplaceholder = function(seed, text) {
// set optional argument "text" to value of "seed" if undefined
text = text || seed;
2013-08-28 18:25:14 +04:00
var hash = md5(seed),
2013-09-02 18:41:18 +04:00
maxRange = parseInt('ffffffffffffffffffffffffffffffff', 16),
hue = parseInt(hash, 16) / maxRange * 256,
2013-08-28 23:54:20 +04:00
height = this.height();
this.css('background-color', 'hsl(' + hue + ', 90%, 65%)');
2013-08-28 18:52:12 +04:00
// CSS rules
2013-09-02 18:41:18 +04:00
this.css('color', '#fff');
2013-08-28 18:52:12 +04:00
this.css('font-weight', 'bold');
this.css('text-align', 'center');
2013-08-28 23:54:20 +04:00
// calculate the height
this.css('line-height', height + 'px');
this.css('font-size', (height * 0.55) + 'px');
2013-08-28 18:52:12 +04:00
if(seed !== null && seed.length) {
this.html(text[0].toUpperCase());
2013-08-28 18:52:12 +04:00
}
2013-08-28 18:25:14 +04:00
};
2013-08-28 18:52:12 +04:00
}(jQuery));