You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
2.0 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. $(window).on('load', function() {
  2. $('.level-bar-inner').each(function() {
  3. var itemWidth = $(this).data('level');
  4. $(this).animate({
  5. width: itemWidth
  6. }, 800);
  7. });
  8. });
  9. jQuery(document).ready(function($) {
  10. /*======= Skillset *=======*/
  11. $('.level-bar-inner').css('width', '0');
  12. /* Bootstrap Tooltip for Skillset */
  13. $('.level-label').tooltip();
  14. /* jQuery RSS - https://github.com/sdepold/jquery-rss */
  15. $("#rss-feeds").rss(
  16. //Change this to your own rss feeds
  17. "https://blog.yigitcolakoglu.com/rss.xml",
  18. {
  19. // how many entries do you want?
  20. // default: 4
  21. // valid values: any integer
  22. limit: 3,
  23. // the effect, which is used to let the entries appear
  24. // default: 'show'
  25. // valid values: 'show', 'slide', 'slideFast', 'slideSynced', 'slideFastSynced'
  26. effect: 'slideFastSynced',
  27. // will request the API via https
  28. // default: false
  29. // valid values: false, true
  30. ssl: true,
  31. // outer template for the html transformation
  32. // default: "<ul>{entries}</ul>"
  33. // valid values: any string
  34. layoutTemplate: "<div class='items'>{entries}</div>",
  35. // inner template for each entry
  36. // default: '<li><a href="{url}">[{author}@{date}] {title}</a><br/>{shortBodyPlain}</li>'
  37. // valid values: any string
  38. entryTemplate: '<div class="item"><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="fas fa-external-link-alt"></i>Read more</a></div></div>'
  39. }
  40. );
  41. /* Github Calendar - https://github.com/IonicaBizau/github-calendar */
  42. new GitHubCalendar("#github-graph", "yigitcolakoglu");
  43. /* Github Activity Feed - https://github.com/caseyscarborough/github-activity */
  44. GitHubActivity.feed({ username: "yigitcolakoglu", selector: "#ghfeed" });
  45. });