This commit is contained in:
xaoxuu 2022-10-23 14:12:44 +08:00
parent 1021e87769
commit 8817f58eef
5 changed files with 52 additions and 11 deletions

View File

@ -8,21 +8,26 @@
*/ */
'use strict'; 'use strict';
const url_for = require('hexo-util').url_for.bind(hexo);
const i18n = require('hexo-i18n');
hexo.extend.tag.register('about', function(args, content) { hexo.extend.tag.register('about', function(args, content) {
args = hexo.args.map(args, ['avatar', 'height', 'border']); args = hexo.args.map(args, ['avatar', 'height', 'border', 'back']);
var rows = hexo.render.renderSync({text: content, engine: 'markdown'}).split('\n'); var rows = hexo.render.renderSync({text: content, engine: 'markdown'}).split('\n');
var el = ''; var el = '';
// wrapper // wrapper
el += '<div class="tag-plugin about">'; el += '<div class="tag-plugin about">';
el += '<div class="about-header">'; if (args.back) {
el += '<a class="nav-back cap" href="' + url_for(hexo.config.root) + '">';
el += '<svg aria-hidden="true" viewBox="0 0 16 16" width="1rem" height="1rem" fill="currentColor"><path fill-rule="evenodd" d="M7.78 12.53a.75.75 0 01-1.06 0L2.47 8.28a.75.75 0 010-1.06l4.25-4.25a.75.75 0 011.06 1.06L4.81 7h7.44a.75.75 0 010 1.5H4.81l2.97 2.97a.75.75 0 010 1.06z"></path></svg>';
el += '<span>Back</span>';
el += '</a>';
}
// avatar // avatar
var avatar_url = args.avatar; var avatar_url = args.avatar;
if (args.avatar === undefined) {
avatar_url = hexo.config.avatar;
}
if (avatar_url) { if (avatar_url) {
el += '<div class="avatar">' el += '<div class="about-header">';
el += '<div class="avatar">';
el += '<img src="' + avatar_url + '"'; el += '<img src="' + avatar_url + '"';
if (args.border && args.border.length > 0) { if (args.border && args.border.length > 0) {
el += ' style="border-radius:' + args.border + '"'; el += ' style="border-radius:' + args.border + '"';
@ -32,8 +37,8 @@ hexo.extend.tag.register('about', function(args, content) {
} }
el += '/>'; el += '/>';
el += '</div>'; el += '</div>';
}
el += '</div>'; el += '</div>';
}
// content // content
el += '<div class="about-body fs14">'; el += '<div class="about-body fs14">';

View File

@ -25,7 +25,7 @@
display: flex display: flex
flex-wrap: wrap flex-wrap: wrap
align-items: center align-items: center
margin: .5rem 0 margin: 0.25rem 0
line-height: 1.5 line-height: 1.5
span+span span+span
margin-left: 0.5rem margin-left: 0.5rem
@ -94,8 +94,6 @@
bottom: 0 bottom: 0
background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.2),rgba(0,0,0,0.3)) background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.2),rgba(0,0,0,0.3))
div+div div+div
margin-top: 8px
@media screen and (max-width: $device-mobile)
margin-top: 4px margin-top: 4px
.cap .cap
color: white color: white
@ -103,6 +101,14 @@
.title .title
font-weight: 500 font-weight: 500
font-size: $fs-h3 font-size: $fs-h3
@media screen and (max-width: $device-mobile)
padding: 1rem
div+div
margin-top: 2px
.title
font-size: $fs-h4
.cap
font-size: $fs-12
h2 h2
margin: .25rem 0 margin: .25rem 0
font-size: $fs-h4 font-size: $fs-h4

View File

@ -27,6 +27,7 @@
margin: 0.75rem 0.5rem margin: 0.75rem 0.5rem
.grid .grid
font-size: $fs-13 font-size: $fs-13
margin: 0.75rem 0.5rem
display: grid display: grid
grid-gap: 2px grid-gap: 2px
grid-template-columns: repeat(auto-fill, "calc((100% - 2 * %s) / 3)" % 2px) grid-template-columns: repeat(auto-fill, "calc((100% - 2 * %s) / 3)" % 2px)

View File

@ -50,6 +50,9 @@
.widget-wrap#github-user .widget-body .menu .widget-wrap#github-user .widget-body .menu
margin-bottom: 0 margin-bottom: 0
background: none background: none
a:hover
box-shadow: none
background: var(--block)
a.active a.active
box-shadow: none box-shadow: none
position: relative position: relative

View File

@ -2,6 +2,32 @@
background: var(--block) background: var(--block)
border-radius: $border-card border-radius: $border-card
padding: 2rem padding: 2rem
position: relative
.nav-back
position: absolute
line-height: 1
overflow: hidden
left: 1rem
top: 1rem
display: flex
align-items: center
background: var(--site-bg)
border-radius: 40px
border: 1px solid var(--block-border)
padding: 2px 0
svg,span
trans1 transform
width: 36px
span
position: absolute
text-align: center
left: 100%
&:hover
background: var(--card)
svg
transform: translateX(-36px)
span
transform: translateX(-100%)
.about-header .about-header
display flex display flex
justify-content: center justify-content: center