在個人很多項目中,都有缺省頭像的問題。爲了保持個性和方便辨認,會給沒有頭像的用戶填充帶名字的頭像。vue
github項目: https://github.com/joaner/nam...git
若是上傳頭像不存在,直接會在 <img>
標籤上填充默認頭像,用戶名從alt
獲取:github
<img alt="李連杰" width="32" style="border-radius: 100%"> <img src="./invalid.jpg" alt="Tom Hanks" width="40"> <script> requirejs('namedavatar', function(namedavatar){ namedavatar.config({ nameType: 'lastName', }) namedavatar.setImgs(document.querySelectorAll('img[alt]'), 'alt') }) </script>
若是<img src="./invalid.jpg">
資源無效,namedavatar.setImgs()
就會填充alt
裏的用戶名,src
變成這樣canvas
<img id="avatar1" src="data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"><rect fill="#9C27B0" x="0" y="0" width="100%" height="100%"></rect><text fill="#FFF" x="50%" y="50%" text-anchor="middle" alignment-baseline="central" font-size="16" font-family="Verdana, Geneva, sans-serif">Hanks</text></svg>">
import { directive } from 'namedavatar/vue' // register as directive Vue.directive('avatar', directive); // in vue template <template> <img v-avatar="'Tom Hanks'" width="36"/> </template>