60 lines
1.9 KiB
JavaScript
60 lines
1.9 KiB
JavaScript
$(document).ready(function ($) {
|
|
$('.level-bar-inner').css('width', '0');
|
|
|
|
$(window).on('load', function () {
|
|
$('.level-bar-inner').each(function () {
|
|
var itemWidth = $(this).data('level');
|
|
|
|
$(this).animate({
|
|
width: itemWidth
|
|
}, 800);
|
|
});
|
|
|
|
});
|
|
|
|
/* Bootstrap Tooltip for Skillset */
|
|
//$('.level-label').tooltip();
|
|
|
|
/* jQuery RSS - https://github.com/sdepold/jquery-rss */
|
|
$("#rss-feeds").rss(
|
|
|
|
//Change this to your own rss feeds
|
|
"https://blog.tommyparnell.com/rss",
|
|
|
|
{
|
|
// how many entries do you want?
|
|
// default: 4
|
|
// valid values: any integer
|
|
limit: 3,
|
|
|
|
// the effect, which is used to let the entries appear
|
|
// default: 'show'
|
|
// valid values: 'show', 'slide', 'slideFast', 'slideSynced', 'slideFastSynced'
|
|
effect: 'slideFastSynced',
|
|
|
|
// outer template for the html transformation
|
|
// default: "<ul>{entries}</ul>"
|
|
// valid values: any string
|
|
layoutTemplate: "<div class='item'>{entries}</div>",
|
|
ssl: true,
|
|
success: function(){
|
|
$("#blog").show();
|
|
},
|
|
|
|
// inner template for each entry
|
|
// default: '<li><a href="{url}">[{author}@{date}] {title}</a><br/>{shortBodyPlain}</li>'
|
|
// valid values: any string
|
|
entryTemplate: '<h3 class="title"><a href="{url}" target="_blank">{title}</a></h3><div><p>{shortBodyPlain}</p><a class="more-link" href="{url}" target="_blank"><i class="fa fa-external-link"></i>Read more</a></div>'
|
|
}
|
|
);
|
|
|
|
$(window).scroll(function () {
|
|
var sticky = $('.header'),
|
|
scroll = $(window).scrollTop();
|
|
|
|
if (scroll >= 131) sticky.addClass('stick');
|
|
else sticky.removeClass('stick');
|
|
});
|
|
|
|
});
|