Last active
July 10, 2018 15:03
-
-
Save RSchneider94/75b218b950130a3eb32e7169ab61b922 to your computer and use it in GitHub Desktop.
My first JS - CareerFoundry Web Development Course
This file contains 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
$(document).ready(function() { | |
// Tooltip | |
$(function () { | |
$('#item1').tooltip(); | |
}); | |
// Smooth Scroll | |
var $root = $('html, body'); | |
$('.navbar a').click(function () { | |
var href = $.attr(this, 'href'); | |
if (href != undefined && href != '#') { | |
$root.animate({ | |
scrollTop: $(href).offset().top | |
}, 500, function () { | |
window.location.hash = href; | |
}); | |
} | |
return false; | |
}); | |
// Work Section | |
for (let index = 0; index < myWorkList.length; index++) { | |
$('#portfolio-thumbs').append( | |
'<div class="col-6 col-md-3">\ | |
<a class="portfolio-caption-container" href="#">\ | |
<img class="img-fluid" src="' + myWorkList[index].thumb +'">\ | |
<p class="portfolio-caption-title text-center">' + myWorkList[index].title + '</p>\ | |
</a>\ | |
</div>' | |
); | |
} | |
// Caption On Hover | |
$('.portfolio-caption-container').mouseenter(function() { | |
$('.portfolio-caption-title', this).show(); | |
}).mouseleave(function() { | |
$('.portfolio-caption-title', this).hide(); | |
}); | |
// Future Tests | |
/* $(window).resize(function () { | |
var screenHeight = $(window).height(); | |
$("#home").css("height", screenHeight); | |
}); | |
var screenHeight = $(window).height(); | |
$("#home").css("height", screenHeight); */ | |
}); | |
// Google Maps API | |
function initMap() { | |
// Berlin LatLng | |
var myLatLng = {lat: 52.5065133, lng: 13.1445545}; | |
var map = new google.maps.Map(document.getElementById('google-maps'), { | |
center: myLatLng, | |
zoom: 10 | |
}); | |
var myFirstMarker = new google.maps.Marker({ | |
position: myLatLng, | |
map: map, | |
label: 'RS', | |
title: 'Hello, Career Foundry!' | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment