This commit is contained in:
haoouba 2021-01-21 20:04:37 +08:00
parent 2a01752312
commit f370cea4eb
5 changed files with 798 additions and 712 deletions

File diff suppressed because one or more lines are too long

View File

@ -710,7 +710,81 @@
}
.joe_list {
&__list {
display: flex;
position: relative;
width: 100%;
padding: 15px 0;
border-bottom: 1px solid var(--classC);
&:last-child {
border-bottom: none;
}
&:hover {
.line {
transform: scaleY(1);
}
.thumbnail {
time {
transform: translate3d(0, 0, 0);
}
}
}
.line {
position: absolute;
z-index: 1;
top: 15px;
left: -15px;
width: 4px;
height: 25px;
border-radius: 2px;
background: var(--theme);
transform: scaleY(0);
transition: transform 0.35s;
}
.thumbnail {
position: relative;
width: 210px;
height: 140px;
min-width: 210px;
min-height: 140px;
margin-right: 15px;
overflow: hidden;
img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 5px;
transition: opacity 0.35s;
&:hover {
opacity: 0.85;
}
}
time {
position: absolute;
z-index: 1;
top: 5px;
right: 5px;
background: var(--theme);
height: 20px;
line-height: 20px;
padding: 0 8px;
color: #fff;
font-size: 12px;
border-radius: 10px;
transition: transform 0.35s;
transform: translate3d(120%, 0, 0);
}
svg {
position: absolute;
z-index: 1;
top: 5px;
left: 5px;
width: 20px;
height: 20px;
fill: #fff;
}
}
}
}
@keyframes progress {

View File

@ -163,16 +163,23 @@ window.Joe = function () {
<li class="joe_list__list">
<div class="line"></div>
<a href="${_.permalink}" class="thumbnail" title="${_.title}">
<img alt="" />
<img class="list_lazyload" src="${_.lazyload}" data-original="${_.image}" alt="${_.title}" />
<time datetime="${_.time}">${_.time}</time>
<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20">
<path d="M903.93077753 107.30625876H115.78633587C64.57261118 107.30625876 22.58166006 149.81138495 22.58166006 201.02510964v624.26547214c0 51.7240923 41.99095114 93.71694641 93.71694641 93.7169464h788.14444164c51.7202834 0 93.71694641-41.99285557 93.71694642-93.7169464v-624.26547214c-0.51227057-51.21372469-43.01739676-93.71885088-94.229217-93.71885088zM115.78633587 171.8333054h788.65671224c16.385041 0 29.70407483 13.31522639 29.70407484 29.70407482v390.22828696l-173.60830179-189.48107072c-12.80486025-13.82749697-30.21634542-21.50774542-48.14010264-19.97093513-17.92375723 1.02073227-34.82106734 10.75387344-46.60138495 26.11437327l-172.58185762 239.1598896-87.06123767-85.52061846c-12.28878076-11.78222353-27.65308802-17.92375723-44.03812902-17.92375577-16.3907529 0.50846167-31.75506163 7.67644101-43.52966736 20.48129978L86.59453164 821.70468765V202.04965083c-1.02454117-17.41529409 12.80486025-30.73052046 29.19180423-30.21634543zM903.93077753 855.50692718H141.90642105l222.25496164-245.81940722 87.0593347 86.03669649c12.80105134 12.80676323 30.21253651 18.95020139 47.11555999 17.4172 17.40958218-1.53871621 33.79652618-11.26614404 45.06267018-26.11818071l172.58376063-238.64762047 216.11152349 236.08817198 2.05098681-1.54062067v142.87778132c0.50846167 16.3907529-13.31522639 29.70597929-30.21444096 29.70597928z m0 0" p-id="1916"></path>
<path d="M318.07226687 509.82713538c79.88945091 0 144.41649754-65.03741277 144.41649754-144.41649753 0-79.37718032-64.52704663-144.92495923-144.41649754-144.92495922-79.89135536 0-144.41649754 64.52704663-144.41649756 144.41268862 0 79.89135536 64.52514218 144.92876814 144.41649756 144.92876813z m0-225.3266807c44.55230407 0 80.91208763 36.36168802 80.91208762 80.91018317 0 44.55611297-35.84751297 81.43007159-80.91208762 81.43007012-45.06838356 0-80.91589654-36.35978356-80.91589508-80.91589507 0-44.55611297 36.87205415-81.42435823 80.91589508-81.42435822z m0 0" p-id="1917"></path>
</svg>
</a>
<div class="information">
<a href="${_.permalink}" class="title" title="${_.title}">
<h6>${_.title}</h6>
</a>
<a class="abstract"></a>
</div>
</li>
`);
});
new LazyLoad('.list_lazyload');
}
});
};

View File

@ -144,9 +144,13 @@ function _parseReply($text)
}
function _getLazyload()
function _getLazyload($type = true)
{
if ($type) {
echo Helper::options()->JLazyload;
} else {
return Helper::options()->JLazyload;
}
}
function _getAsideAuthorNav()

View File

@ -42,6 +42,7 @@ function _getPost($self)
"commentsNum" => number_format($item->commentsNum),
"agree" => number_format($item->agree),
"permalink" => $item->permalink,
"lazyload" => _getLazyload(false)
);
};
$self->response->throwJson(array("data" => $result));