Skip to content

Commit

Permalink
Deploying to main from @ JuliaCon/www.juliacon.org@c60dc222abb320b384…
Browse files Browse the repository at this point in the history
  • Loading branch information
staticfloat committed Jul 10, 2024
1 parent 1dbc5c1 commit 7e24ee0
Show file tree
Hide file tree
Showing 710 changed files with 95,831 additions and 0 deletions.
536 changes: 536 additions & 0 deletions previews/PR609/2014/css/juliacon.css

Large diffs are not rendered by default.

Binary file added previews/PR609/2014/images/building-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added previews/PR609/2014/images/building-4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added previews/PR609/2014/images/cloud-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added previews/PR609/2014/images/cloud.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added previews/PR609/2014/images/flag-bottom.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added previews/PR609/2014/images/hancock.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added previews/PR609/2014/images/map-v2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added previews/PR609/2014/images/sears-tower.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added previews/PR609/2014/images/sponsors/fblogo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added previews/PR609/2014/images/sponsors/forio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added previews/PR609/2014/images/sponsors/intel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added previews/PR609/2014/images/waving-flag.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
319 changes: 319 additions & 0 deletions previews/PR609/2014/index.html

Large diffs are not rendered by default.

40 changes: 40 additions & 0 deletions previews/PR609/2014/js/juliacon.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
$(document).ready(function(){
var midpoint = $('.middle-container').offset().top;

$(window).on('scroll', function() {
$('.top-container .waving-flag').css({
'-webkit-transform': 'translate3d(' + $(window).scrollTop() + 'px, ' + $(window).scrollTop()*0.05 + 'px, ' + $(window).scrollTop()*-1 + 'px) rotate(-10deg)',
'-moz-transform': 'translate3d(' + $(window).scrollTop() + 'px, ' + $(window).scrollTop()*0.05 + 'px, ' + $(window).scrollTop()*-1 + 'px) rotate(-10deg)',
'-o-transform': 'translate3d(' + $(window).scrollTop() + 'px, ' + $(window).scrollTop()*0.05 + 'px, ' + $(window).scrollTop()*-1 + 'px) rotate(-10deg)',
'-ms-transform': 'translate3d(' + $(window).scrollTop() + 'px, ' + $(window).scrollTop()*0.05 + 'px, ' + $(window).scrollTop()*-1 + 'px) rotate(-10deg)',
'transform': 'translate3d(' + $(window).scrollTop() + 'px, ' + $(window).scrollTop()*0.05 + 'px, ' + $(window).scrollTop()*-1 + 'px) rotate(-10deg)'
});

$('.middle-container .waving-flag').css({
'-webkit-transform': 'translate3d(' + -1*($(window).scrollTop()-midpoint - $(window).width()/2) + 'px, ' + ($(window).scrollTop()-(midpoint*1.5))*.1 + 'px, ' + ($(window).scrollTop()-midpoint)*.07 + 'px) rotate(10deg) scaleX(-1)',
'-moz-transform': 'translate3d(' + -1*($(window).scrollTop()-midpoint - $(window).width()/2) + 'px, ' + ($(window).scrollTop()-(midpoint*1.5))*.1 + 'px, ' + ($(window).scrollTop()-midpoint)*.07 + 'px) rotate(10deg) scaleX(-1)',
'-o-transform': 'translate3d(' + -1*($(window).scrollTop()-midpoint - $(window).width()/2) + 'px, ' + ($(window).scrollTop()-(midpoint*1.5))*.1 + 'px, ' + ($(window).scrollTop()-midpoint)*.07 + 'px) rotate(10deg) scaleX(-1)',
'-ms-transform': 'translate3d(' + -1*($(window).scrollTop()-midpoint - $(window).width()/2) + 'px, ' + ($(window).scrollTop()-(midpoint*1.5))*.1 + 'px, ' + ($(window).scrollTop()-midpoint)*.07 + 'px) rotate(10deg) scaleX(-1)',
'transform': 'translate3d(' + -1*($(window).scrollTop()-midpoint - $(window).width()/2) + 'px, ' + ($(window).scrollTop()-(midpoint*1.5))*.1 + 'px, ' + ($(window).scrollTop()-midpoint)*.07 + 'px) rotate(10deg) scaleX(-1)'
});

$('.fixed-container .cloud-container1').css({
'-webkit-transform': 'translateY(' + $(window).scrollTop()*0.4 + 'px)',
'-moz-transform': 'translateY(' + $(window).scrollTop()*0.4 + 'px)',
'-o-transform': 'translateY(' + $(window).scrollTop()*0.4 + 'px)',
'-ms-transform': 'translateY(' + $(window).scrollTop()*0.4 + 'px)',
'transform': 'translateY(' + $(window).scrollTop()*0.4 + 'px)'
});
$('.fixed-container .cloud-container2').css({
'-webkit-transform': 'translateY(' + $(window).scrollTop()*0.2 + 'px)',
'-moz-transform': 'translateY(' + $(window).scrollTop()*0.2 + 'px)',
'-o-transform': 'translateY(' + $(window).scrollTop()*0.2 + 'px)',
'-ms-transform': 'translateY(' + $(window).scrollTop()*0.2 + 'px)',
'transform': 'translateY(' + $(window).scrollTop()*0.2 + 'px)'
});

if ($(window).scrollTop() >= ($('#bottom-illustration').offset().top) - $(window).height()/2) {
$('.illo-container').addClass('enter-frame');
}
});
});
Binary file added previews/PR609/2015/csail-doors.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 7e24ee0

Please sign in to comment.