This commit is contained in:
= 2021-05-24 16:18:16 +05:00
parent 23fab95424
commit 29e4c0aea8
6 changed files with 41 additions and 25 deletions

View File

@ -53,9 +53,6 @@
line-height: $h4-height;
margin: 10px 0 0 0;
display: block;
height: 75px;
overflow: hidden;
text-overflow: ellipsis;
}
&__box {
padding: 30px 0;

View File

@ -568,6 +568,9 @@
}
}
}
.banner__mobile {
display: block;
}
}
@include xsm-sm {
.swiper-slide-content-category {

View File

@ -257,6 +257,9 @@
}
}
// main end
.banner__mobile {
display: none ;
}
// event start
.event {
margin: 80px 0;

View File

@ -60,9 +60,9 @@
p {
font-size: $p-size;
line-height: $p-height;
margin-bottom: 30px;
margin-bottom: 20px;
img {
width: 70%;
width: 90%;
margin: 30px auto;
display: block;
height: auto;
@ -74,7 +74,7 @@
}
}
img {
width: 70%;
width: 90%;
margin: 30px auto;
display: block;
height: auto;
@ -90,6 +90,9 @@
&-link {
margin-right: 20px;
fill: $main-color;
svg {
color: $main-color;
}
}
}
&-name {

View File

@ -634,9 +634,6 @@ li {
line-height: 25px;
margin: 10px 0 0 0;
display: block;
height: 75px;
overflow: hidden;
text-overflow: ellipsis;
}
.card__box {
padding: 30px 0;
@ -1442,6 +1439,10 @@ li {
margin: 5px;
}
.banner__mobile {
display: none;
}
.event {
margin: 80px 0;
}
@ -1889,10 +1890,10 @@ li {
.news__body p {
font-size: 16px;
line-height: 30px;
margin-bottom: 30px;
margin-bottom: 20px;
}
.news__body p img {
width: 70%;
width: 90%;
margin: 30px auto;
display: block;
height: auto;
@ -1901,7 +1902,7 @@ li {
color: #4285f4;
}
.news__body img {
width: 70%;
width: 90%;
margin: 30px auto;
display: block;
height: auto;
@ -1919,6 +1920,9 @@ li {
margin-right: 20px;
fill: #fd4c24;
}
.news__footer-social-link svg {
color: #fd4c24;
}
.news__footer-name {
font-size: 22px;
line-height: 30px;
@ -2504,6 +2508,10 @@ li {
width: 100%;
padding: 8px 0;
}
.banner__mobile {
display: block;
}
}
@media (max-width: 540px) {
.swiper-slide-content-category {

View File

@ -55,15 +55,17 @@ post = "post"
</header>
<div class="news__body">
{{post.content|md}}
{% if post.author %}
<p style="text-align: right"><em><strong>{{post.author}}</strong></em></p>
{% endif %}
</div>
<div class="news__footer">
<div class="news__footer-social">
{% partial 'social' %}
</div>
<div class="news__footer-name">
{% if post.author %}
<p style="text-align: right"><em><strong>{{post.author}}</strong></em></p>
{% endif %}
</div>
</div>
</article>
<div class="news__sidebar">
@ -78,20 +80,20 @@ post = "post"
})
var re = /\[video poster=\"(.+?)\".+?mp4=\"(.+?)\"/g;
// re = /(\S+)=["']?((?:.(?!["']?\s+(?:\S+)=|\s*\/?[>"']))+.)["']?/g
var ptags = document.querySelectorAll('p');
var ptags = document.querySelectorAll('p');
ptags.forEach(s =>{
ptags.forEach(s => {
var m;
m = re.exec(s.innerText);
if (m) {
var video =document.createElement('video');
video.setAttribute('src',m[2]);
video.setAttribute('controls',"")
video.setAttribute('width',"100%")
video.setAttribute('type',"video/mp4")
video.setAttribute('poster',m[1])
s.parentNode.replaceChild(video,s);
var video = document.createElement('video');
video.setAttribute('src', m[2]);
video.setAttribute('controls', "")
video.setAttribute('width', "100%")
video.setAttribute('type', "video/mp4")
video.setAttribute('poster', m[1])
s.parentNode.replaceChild(video, s);
}
});