您现在的位置是:首页 > 教程 > WordPress教程WordPress教程
WordPress怎么用字母替代图片脚本LetterAvatar
冬儿2023-07-27 23:22:33WordPress教程已有人查阅
导读基于canvas,通过toDataURL动态生成base64图片。目前我主题的Gravatar头像,就是利用这个LetterAvatar脚本实现未设置Gravatar头像则读取ALT标签
基于canvas,通过toDataURL动态生成base64图片。目前我主题的Gravatar头像,就是利用这个LetterAvatar脚本实现未设置Gravatar头像则读取ALT标签,自动生成首字图片替代默认的头像图片。之前已有WP爱好者制作了一款:mk-letter-avatar 字母头像插件,试了一下很好用,不过打开浏览器开者工具发现产生大量404错误,看了一下源代码,该插件是通过无头像返回404错误,触发onerror事件用自动生成的字母图片替换src图片地址,判断方式不是很合理,如果不是因为个缺点我都想直接拿来用了,如果作者再优化一下, 是款 实用的插件。
我的实现原理和插件不同,配合头像本地缓存功能,判断无头像后,直接为无头像的图片添加特定的class类,然后通过LetterAvatar脚本替换图片。需要注意的是上面提到的插件,Gravatar头像图片必须有alt标签属性,否则不会生成正常的图片,可惜大部分主题默认Gravatar头像alt标签属性是空的.....如果想自动为Gravatar头像添加alt标签属性,可以将下面的代码添加到当前主题函数模板functions.php中:
function zm_gravatar_alt($altgravatar) {
if (have_comments()) {
$alt = get_comment_author();
}
else {
$alt = get_the_author_meta('display_name');
}
$altgravatar= str_replace('alt=''', 'alt='' . $alt . '' title='Gravatar for ' . $alt . ''', $altgravatar);
return $altgravatar;
}
add_filter('get_avatar', 'zm_gravatar_alt');
之后,自动将评论者昵称做为alt属性。本文只是自己做个记录,并不是教大家怎么弄这个头像,如果认为这字母头像还不错,请直接使用上面介绍的插件。另附LetterAvatar脚本演示代码:
<!DOCTYPE html>
<html>
<h1>Letter Avatar</h1>
< all><strong>用法:</strong></ all>
<pre>
<code><img src="" class="avatar photo" width="256" height="256" alt="知更鸟" color="#c40000"></code>
</pre>
<img src="" class="avatar photo" height="240" width="240" alt="知更鸟" color="#c40000" />
<img src="" class="avatar photo" height="240" width="240" alt="更鸟" color="#99CC66" />
<img src="" class="avatar photo" height="240" width="240" alt="鸟" color="#0D8ABC" />
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
pre {
margin: 20px 0;
padding: 20px;
background: #fafafa;
}
.avatar { border-radius: 50%; }
</style>
<script src="https://libs.baidu.com/jquery/3.2.1/jquery.min.js "></script>
<script>
/*
* LetterAvatar
*
* Artur Heinze
* Create Letter avatar based on Initials
* based on https://gist.github.com/leecrossley/6027780
*/
(function(w, d){
function LetterAvatar (name, size, color) {
name = name || '';
size = size || 60;
var colours = [
"#1abc9c", "#2ecc71", "#3498db", "#9b59b6", "#34495e", "#16a085", "#27ae60", "#2980b9", "#8e44ad", "#2c3e50",
"#f1c40f", "#e67e22", "#e74c3c", "#ecf0f1", "#95a5a6", "#f39c12", "#d35400", "#c0392b", "#bdc3c7", "#7f8c8d"
],
nameSplit = String(name).split(' '),
initials, charIndex, colourIndex, canvas, context, dataURI;
if (nameSplit.length == 1) {
initials = nameSplit[0] ? nameSplit[0].charAt(0):'?';
} else {
initials = nameSplit[0].charAt(0) + nameSplit[1].charAt(0);
}
if (w.devicePixelRatio) {
size = (size * w.devicePixelRatio);
}
charIndex = (initials == '?' ? 72 : initials.charCodeAt(0)) - 64;
colourIndex = charIndex % 20;
canvas = d.createElement('canvas');
canvas.width = size;
canvas.height = size;
context = canvas.getContext("2d");
context.fillStyle = color ? color : colours[colourIndex - 1];
context.fillRect (0, 0, canvas.width, canvas.height);
context.font = Math.round(canvas.width/2)+"px Arial";
context.textAlign = "center";
context.fillStyle = "#FFF";
context.fillText(initials, size / 2, size / 1.5);
dataURI = canvas.toDataURL();
canvas = null;
return dataURI;
}
LetterAvatar.transform = function() {
Array.prototype.forEach.call(d.querySelectorAll('img[alt]'), function(img, name, color) {
name = img.getAttribute('alt');
color = img.getAttribute('color');
img.src = LetterAvatar(name, img.getAttribute('width'), color);
img.removeAttribute('avatar');
img.setAttribute('alt', name);
});
};
// AMD support
if (typeof define === 'function' && define.amd) {
define(function () { return LetterAvatar; });
// CommonJS and Node.js module support.
} else if (typeof exports !== 'undefined') {
// Support Node.js specific `module.exports` (which can be a function)
if (typeof module != 'undefined' && module.exports) {
exports = module.exports = LetterAvatar;
}
// But always support CommonJS module 1.1.1 spec (`exports` cannot be a function)
exports.LetterAvatar = LetterAvatar;
} else {
window.LetterAvatar = LetterAvatar;
d.addEventListener('DOMContentLoaded', function(event) {
LetterAvatar.transform();
});
}
})(window, document);
</script>
</html>
本文标签:
很赞哦! ()
相关文章
随机图文
-
判断当前页面是否是WordPress登录页的函数
WordPress有is_home() is_single()这些函数来判断当前页面是在什么页面,那么有没有什么方法判断当前页面是登录页呢?下面由WordPress教程栏目给大家介绍其方法。 -
wordpress自动翻译插件的使用方法
把自己网站的内容翻译成多种语言的好方式就是安装相关的插件。这里有很多非常好的方法。这些插件通常分为两种类型: -
WordPress5.5后版本jQuery兼容性问题
随着WordPress 5.5的更新,默认情况下不再启用称为jquery-migrate的迁移工具。 这可能会导致某些主题或运行较旧代码的插件缺少功能或出现意外行为。 -
wordpress非根目录部署nginx配置方法
在非根目录部署wordpress时/wp-json/wp/v2/posts这样的rest Api会访问不了增加nginx配置(假设部署在wp文件夹下)
留言与评论 (共有 条评论) |