adding in proper images for slideshow, and main features section text and footer

This commit is contained in:
Arjun Patel
2019-01-26 14:15:08 -08:00
parent 730fd80225
commit 1bb0b81ebc
15 changed files with 466 additions and 225 deletions
+38 -2
View File
File diff suppressed because one or more lines are too long
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 581 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 MiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 MiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

+19 -1
View File
@@ -1,6 +1,6 @@
$(document).ready(function() {
// popup when they try to log in or signup
$('#login, #signup').click(function() {
$('#login, #signup, .social-media-icons').click(function() {
$('#popup')
.text('Coming Soon!')
.slideDown()
@@ -47,4 +47,22 @@ $(document).ready(function() {
`)
);
});
// Slideshow main
var myIndex = 0;
carousel();
function carousel() {
var i;
var x = document.getElementsByClassName('mySlides');
for (i = 0; i < x.length; i++) {
x[i].style.display = 'none';
}
myIndex++;
if (myIndex > x.length) {
myIndex = 1;
}
x[myIndex - 1].style.display = 'block';
setTimeout(carousel, 4000); // Change image every 2 seconds
}
});
+10 -7
View File
@@ -6,13 +6,16 @@
document.body.classList.contains('has-animations'))
) {
const e = (window.sr = ScrollReveal());
e.reveal('.hero-title, .hero-paragraph, .join-paragraph, .hero-cta', {
duration: 1e3,
distance: '40px',
easing: 'cubic-bezier(0.5, -0.01, 0, 1.005)',
origin: 'bottom',
interval: 150
}),
e.reveal(
'.hero-title, .hero-paragraph, .join-paragraph, .hero-cta, #countdown',
{
duration: 1e3,
distance: '40px',
easing: 'cubic-bezier(0.5, -0.01, 0, 1.005)',
origin: 'bottom',
interval: 150
}
),
e.reveal('.feature, .pricing-table', {
duration: 600,
distance: '40px',
+399 -215
View File
File diff suppressed because one or more lines are too long