/*====================================================
TABLE OF CONTENT
1. function declearation
2. Initialization
====================================================*/
/*===========================
1. function declearation
==========================*/
var themeApp = {
featuredMedia: function(){
$(".post").each(function() {
var thiseliment = $(this);
var media_wrapper = $(this).find('featured');
var media_content_image = media_wrapper.find($('img'));
var media_content_embeded = media_wrapper.find('iframe');
if (media_content_image.length > 0) {
$(media_content_image).insertAfter(thiseliment.find('.post-head')).wrap("<div class='featured-media'></div>");
thiseliment.addClass('post-type-image');
media_wrapper.remove();
}
else if (media_content_embeded.length > 0) {
$(media_content_embeded).insertAfter(thiseliment.find('.post-head')).wrap("<div class='featured-media'></div>");
thiseliment.addClass('post-type-embeded');
}
});
},
responsiveIframe: function() {
$('.post').fitVids();
},
sidebarConfig:function() {
if(sidebar_left == true) {
$('.main-content').addClass('col-md-push-4');
$('.sidebar').addClass('col-md-pull-8');
}
},
recentPost:function() {
var feed_url = "/rss/";
var code = String('');
$.get(feed_url, function(data) {
$(data).find('item').slice(0,recent_post_count).each(function(){
var full = $(this).find('description').text();
var content = $(this).contentSnippet;
var link = $(this).find('link').text();
var title = $(this).find('title').text();
var published_date = $(this).find('pubDate').text();
function format_date (dt) {
var d = new Date(dt);
var month_name = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
var month = month_name[d.getMonth()];
var date = d.getDate();
var year = d.getFullYear();
var formatted_dt = month+' '+date+','+' '+year;
return formatted_dt;
}
code += '<div class="recent-single-post">';
code += '<a href="' + link + '" class="post-title">' + title + '</a><div class="date">' + format_date(published_date) + '</div>';
code += '</div>';
})
$(".recent-post").html(code);
});
},
highlighter: function() {
$('pre code').each(function(i, block) {
hljs.highlightBlock(block);
});
},
backToTop: function() {
$(window).scroll(function(){
if ($(this).scrollTop() > 100) {
$('#back-to-top').fadeIn();
} else {
$('#back-to-top').fadeOut();
}
});
$('#back-to-top').on('click', function(e){
e.preventDefault();
$('html, body').animate({scrollTop : 0},1000);
return false;
});
},
init: function() {
themeApp.featuredMedia();
themeApp.responsiveIframe();
// themeApp.sidebarConfig();
// themeApp.recentPost();
themeApp.highlighter();
themeApp.backToTop();
}
}
/*===========================
2. Initialization
==========================*/
$(document).ready(function(){
themeApp.init();
});
前端代码 返回顶部 backToTop
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 之前在学习RecyclerView的时候,建立了一个可以滑动的View列表,但是当滑动距离过长的时候,需要手动返回...
- 前言 非常有幸通过了支付宝的一轮电面,面试官对我评价较高,题目中设计到了参数集合、数据库优化、索引、线程池、锁、反...