Created
January 2, 2023 18:29
-
-
Save landsurveyorsunited/fee3f069d3c7b73fbeb9931ae2007883 to your computer and use it in GitHub Desktop.
jquery rss feed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="wrapper"> | |
<div class="preview"> | |
<div class="half bigger"></div> | |
<div class="half fourth"></div> | |
</div> | |
<div id="articles"> | |
<div class="post-list"></div> | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//usemuzli/portfolio/ | |
var feeds = [ | |
//'https://www.pinterest.it/dribbble/feed.rss', | |
'https://landsurveyorsunited.com/video/feed/all', | |
'https://landsurveyorsunited.com/photo/feed/all', | |
//'http://feeds.feedburner.com/Muzli-DesignInspiration-Medium', | |
//'https://www.internazionale.it/sitemaps/rss.xml', | |
'https://jobs.landsurveyorsunited.org/feed', | |
'https://landsurveyorsunited.com/events/feed/all', | |
//'https://rss.app/feeds/Hz2Rxx5TeVVmN4zd.xml', | |
]; | |
var postTemplate = ` | |
<article class="post" data-date="{date}" data-order="{index}" data-site="{site}"> | |
<a target="_blank" href="{url}">{teaserImage} | |
<div class="post-title">{title} | |
</div> | |
</a> | |
</article> | |
`; | |
$("#articles .post-list").rss(feeds, | |
{ | |
limit: 50, | |
layoutTemplate: '{entries}', | |
entryTemplate:postTemplate, | |
dateFormat: "MMMM DD, YY HH:mm:ss", | |
tokens: { | |
site: function(entry, tokens) { | |
urlSplit = tokens.url.split('/')[2]; | |
urlClear = urlSplit.replace('www.','') | |
return urlClear; | |
} | |
}, | |
onData: function(entry) { | |
console.log(entry) | |
} | |
}, | |
function() { | |
posts = $('#articles .post'); | |
posts.each( function(i,v){ | |
//console.log(v) | |
var postTitle = ($(v).find('.post-title')); | |
var postImg = ($(v).find('img')); | |
if( postTitle.html()=='') { | |
$(this).find('.post-title').remove() | |
} | |
postImg.on('error', function() { | |
$(this).parents('.post').remove() | |
}) | |
}) | |
$(".post-list .post").sort(function(a,b){ | |
a = new Date($(a).data("date")); | |
b = new Date($(b).data("date")); | |
return a - b; | |
}).each(function(i,p){ | |
$(".post-list").prepend(this); | |
}) | |
$('.bigger').append($(".post-list .post").eq(0)) | |
secondFour = $(".post-list .post").slice(0,4) | |
secondFour.each( function(i,post){ | |
$('.fourth').append(post) | |
}) | |
$('.preview .post').each(function(i,v,) { | |
$(v).find('.post-title').append('<p>' + $(v).data('site') + '<p>') | |
}) | |
} | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-rss/4.3.0/jquery.rss.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.28.0/moment.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--light-bg: #f5f5f5; | |
--light: #fff; | |
--light-color: #7f8596; | |
--dark-bg: #292b33; | |
--dark: #3b414e; | |
--dark-color: #a2a8b9; | |
--bg: var(--light-bg); | |
--lum: var(--light); | |
--color: var(--light-color); | |
} | |
* { | |
box-sizing: border-box; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} | |
html { | |
font-size: 18px; | |
} | |
body { | |
margin: 0; | |
font-family: Arial; | |
line-height: 1.5rem; | |
transition:0.5s; | |
background: #f5f5f5; | |
background: var(--bg); | |
.dark { | |
--bg: var(--dark-bg); | |
--lum: var(--dark); | |
--color: var(--dark-colo); | |
} | |
} | |
hr { | |
border: none; | |
border-bottom: 1px solid #eee; | |
margin: 1.5rem 0; | |
} | |
p { | |
font-size: 1rem; | |
} | |
.preview { | |
display: flex; | |
flex-wrap: wrap; | |
margin-bottom: 5rem; | |
.half{ | |
width: 50%; | |
} | |
.bigger{ | |
display: flex; | |
flex-wrap: wrap; | |
.post { | |
width: 100%; | |
.post-title { | |
opacity: 1; | |
bottom: 0; | |
width: auto; | |
height: auto; | |
background: transparent; | |
padding: 1.5rem 1.875rem; | |
font-size: 1rem; | |
z-index:12; | |
} | |
a:before { | |
content:''; | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
display: block; | |
background: #000b; | |
background: linear-gradient(0deg, black -40%, transparent 40%); | |
z-index: 3; | |
} | |
} | |
} | |
.fourth{ | |
display: flex; | |
flex-wrap: wrap; | |
.post { | |
width: 50%; | |
} | |
} | |
.post { | |
width: 33.33%; | |
padding: 0.5px; | |
a { | |
display: block; | |
position: relative; | |
&:hover { | |
.post-title { | |
opacity: 1; | |
} | |
} | |
&:after { | |
content:''; | |
padding-top: calc(100% * (5/7)); | |
display: block; | |
background: #000; | |
} | |
img { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
object-fit:cover; | |
} | |
.post-title { | |
position: absolute; | |
color: #fff; | |
height: 100%; | |
width: 100%; | |
background: #000c; | |
transition:0.33s; | |
font-size: 0.875rem; | |
line-height: 1.33; | |
padding: 1.125rem 1.25rem; | |
opacity: 0; | |
p { | |
font-size: 0.75rem; | |
opacity: 0.66; | |
margin: 0.25rem 0; | |
} | |
} | |
} | |
} | |
} | |
.wrapper{ | |
max-width: 1450px; | |
display: block; | |
margin: auto; | |
margin: 3rem auto; | |
padding: 0 2.5rem; | |
.post-list{ | |
max-width: 100%; | |
column-count: 5; | |
column-gap: 1.25rem; | |
margin: 0; | |
article { | |
display: inline; | |
a { | |
display: inline-block; | |
position: relative; | |
width: 100%; | |
margin-bottom: 0.875rem; | |
text-decoration: none; | |
overflow: hidden; | |
border-radius:8px; | |
background: var(--lum); | |
transition:0.5s; | |
&:hover { | |
//transform:translateY(-0.5rem); | |
.post-title{ | |
opacity: 1; | |
} | |
img { | |
//transform: scale(1.1); | |
} | |
} | |
} | |
.post-title{ | |
overflow: hidden; | |
display: -webkit-box; | |
-webkit-line-clamp: 1; | |
-webkit-box-orient: vertical; | |
margin: .75rem 0; | |
line-height: 1.25!important; | |
color: var(--color); | |
padding:0rem 0.875rem; | |
font-size: 0.8rem; | |
font-family: 'Arial'; | |
font-weight: 400; | |
transition:0.25s; | |
} | |
img{ | |
width: 100%; | |
height: auto; | |
display: block; | |
min-height: 6rem; | |
object-fit: cover; | |
transition:0.5s; | |
overflow: hidden; | |
} | |
&:hover{ | |
a { | |
box-shadow:0 5px 30px -6px rgba(#222,0.33); | |
} | |
} | |
} | |
} | |
} | |
.wrapper #articles .post-list{ | |
@media screen and (max-width: 1150px){ | |
column-count: 4; | |
} | |
@media screen and (max-width: 950px){ | |
column-count: 3; | |
.preview { | |
.half{ | |
height: 100%; | |
} | |
} | |
} | |
@media screen and (max-width: 768px){ | |
column-count: 2; | |
} | |
@media screen and (max-width: 550px){ | |
column-count: 1; | |
} | |
} | |
.preview { | |
@media screen and (max-width: 768px){ | |
.half{ | |
width: 100%; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment