Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ecleodominique authored Jan 19, 2024
1 parent 66c09a7 commit 364c706
Show file tree
Hide file tree
Showing 53 changed files with 16,661 additions and 0 deletions.
101 changes: 101 additions & 0 deletions assets/css/fontawesome-all.min.css

Large diffs are not rendered by default.

Binary file added assets/css/images/overlay.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3,229 changes: 3,229 additions & 0 deletions assets/css/main.css

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions assets/js/breakpoints.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions assets/js/browser.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions assets/js/jquery.min.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions assets/js/jquery.poptrox.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

117 changes: 117 additions & 0 deletions assets/js/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
/*
Strata by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

(function($) {

var $window = $(window),
$body = $('body'),
$header = $('#header'),
$footer = $('#footer'),
$main = $('#main'),
settings = {

// Parallax background effect?
parallax: true,

// Parallax factor (lower = more intense, higher = less intense).
parallaxFactor: 20

};

// Breakpoints.
breakpoints({
xlarge: [ '1281px', '1800px' ],
large: [ '981px', '1280px' ],
medium: [ '737px', '980px' ],
small: [ '481px', '736px' ],
xsmall: [ null, '480px' ],
});

// Play initial animations on page load.
$window.on('load', function() {
window.setTimeout(function() {
$body.removeClass('is-preload');
}, 100);
});

// Touch?
if (browser.mobile) {

// Turn on touch mode.
$body.addClass('is-touch');

// Height fix (mostly for iOS).
window.setTimeout(function() {
$window.scrollTop($window.scrollTop() + 1);
}, 0);

}

// Footer.
breakpoints.on('<=medium', function() {
$footer.insertAfter($main);
});

breakpoints.on('>medium', function() {
$footer.appendTo($header);
});

// Header.

// Parallax background.

// Disable parallax on IE (smooth scrolling is jerky), and on mobile platforms (= better performance).
if (browser.name == 'ie'
|| browser.mobile)
settings.parallax = false;

if (settings.parallax) {

breakpoints.on('<=medium', function() {

$window.off('scroll.strata_parallax');
$header.css('background-position', '');

});

breakpoints.on('>medium', function() {

$header.css('background-position', 'left 0px');

$window.on('scroll.strata_parallax', function() {
$header.css('background-position', 'left ' + (-1 * (parseInt($window.scrollTop()) / settings.parallaxFactor)) + 'px');
});

});

$window.on('load', function() {
$window.triggerHandler('scroll');
});

}

// Main Sections: Two.

// Lightbox gallery.
/*$window.on('load', function() {
$('#two').poptrox({
caption: function($a) { return $a.next('h3').text(); },
overlayColor: '#2c2c2c',
overlayOpacity: 0.85,
popupCloserText: '',
popupLoaderText: '',
selector: '.work-item a.image',
usePopupCaption: true,
usePopupDefaultStyling: false,
usePopupEasyClose: false,
usePopupNav: true,
windowMargin: (breakpoints.active('<=small') ? 0 : 50)
});
});*/

})(jQuery);
Loading

0 comments on commit 364c706

Please sign in to comment.