Skip to content

Commit 4128d2a

Browse files
committed
Alles neu macht der Juni
1 parent c8e0fef commit 4128d2a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+9569
-761
lines changed

Footage/Smartphones.psd

1.16 MB

css/animate.css

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bootstrap.css

+5,785
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/style.css

-701
This file was deleted.

css/theme.css

+884
Large diffs are not rendered by default.
19.9 KB
Binary file not shown.

fonts/glyphicons-halflings-regular.svg

+229
40.3 KB
Binary file not shown.
22.8 KB
Binary file not shown.

images/aedcgn_mobile.png

340 KB

images/client1.png

4.35 KB

images/client2.png

3.64 KB

images/client3.png

3.28 KB

images/favicon.ico

1.12 KB
Binary file not shown.

images/favicon.png

1.11 KB

images/iamnotchinese_image.jpg

165 KB

images/jumbotron.jpg

456 KB

images/koelnapi_horizontal_200.png

1.01 KB

images/koelnapi_map.png

916 KB

images/placeholder.png

331 KB

images/placeholder2.png

181 KB

images/placeholder3.jpg

46.3 KB

images/placeholder4.jpg

48.1 KB

images/placeholder5.jpg

35.7 KB

images/placeholder6.jpg

45.8 KB

images/placeholder7.jpg

310 KB

images/projects/aedcgn.png

111 KB

images/projects/offeneskoeln.png

505 KB
40.1 KB

images/projects/unfallkarte.png

975 KB
119 KB

images/railslove-logo-175x42.png

3.62 KB

index.html

+516-59
Large diffs are not rendered by default.

js/bootstrap.js

+1,951
Large diffs are not rendered by default.

js/jquery.zoom-scroller.js

+146
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
/* ===========================================================
2+
* jquery.zoom-scroller.js v1.0
3+
* ===========================================================
4+
* Copyright 2014 Pete Rojwongsuriya.
5+
* http://www.thepetedesign.com
6+
*
7+
* Image will smoothly zooms in/out as you scroll through them
8+
* creating a very nice subtle animation that grabs attention
9+
*
10+
* https://github.com/peachananr/zoom-scroller
11+
*
12+
* License: GPL v3
13+
*
14+
* ========================================================== */
15+
16+
!function($){
17+
18+
var defaults = {
19+
zoom: 1,
20+
initZoom: 1.15,
21+
animationTime: 2000,
22+
easing: "ease",
23+
onZoom: null,
24+
beforeZoom: null,
25+
afterZoom: null,
26+
offsetTop: 0,
27+
offsetBottom: 200,
28+
};
29+
30+
31+
$.fn.zoomScroller = function(options){
32+
return this.each(function(){
33+
var settings = $.extend({}, defaults, options),
34+
el = $(this),
35+
originY = 0,
36+
bg = el.find("> img"),
37+
bgW = bg.width(),
38+
bgH = bg.height();
39+
40+
// Wrap all list items in a scroller to be used to scroll
41+
el.addClass("zs-wrapper").css({
42+
overflow: "hidden",
43+
minWidth: bg.width(),
44+
minHeight: bg.height(),
45+
display: "block",
46+
position: "relative"
47+
}).prepend("<div class='zs-img'></div>");
48+
bg.remove();
49+
var img = el.find("> .zs-img");
50+
51+
$(window).resize(function() {
52+
el.addClass("zs-wrapper").css({
53+
minWidth: bgW,
54+
minHeight: bgH
55+
});
56+
});
57+
58+
img.css({
59+
background: "url(" + bg.attr("src") + ") center center no-repeat",
60+
"background-size": "cover",
61+
overflow: "hidden",
62+
width: "100%",
63+
height: "100%",
64+
position: "absolute",
65+
"-webkit-transform": "scale(" + settings.initZoom + ")",
66+
"-moz-transform": "scale(" + settings.initZoom + ")",
67+
"-o-transform": "scale(" + settings.initZoom + ")",
68+
"transform": "scale(" + settings.initZoom + ")",
69+
"transition": "transform " + settings.animationTime + "ms " + settings.easing,
70+
"-webkit-transition": "-webkit-transform " + settings.animationTime + "ms " + settings.easing,
71+
"-moz-transition": "-moz-transform " + settings.animationTime + "ms " + settings.easing,
72+
"-ms-transition": "-o-transform " + settings.animationTime + "ms " + settings.easing
73+
74+
});
75+
76+
// Swipe Support
77+
var debut,
78+
isTouching = false;
79+
$("body").on('touchstart', function() {
80+
if (event.touches.length == 1) {
81+
debut = event.touches[0].pageY;
82+
isTouching = true;
83+
}
84+
});
85+
86+
$("body").on('touchend', function() {
87+
isTouching = false;
88+
debut = null;
89+
})
90+
91+
// bind on scroll to create zoom effect on the background
92+
$(document).on('touchmove mousewheel DOMMouseScroll', function(e, delta) {
93+
originY = $(document).scrollTop();
94+
95+
// Zoom startes/stops only when object is on screen
96+
if (el.is_on_screen($(document).scrollTop())) {
97+
if (typeof settings.beforeZoom == 'function') settings.beforeZoom(img.parent(), "in");
98+
img.css({
99+
"-webkit-transform": "scale(" + settings.zoom + ")",
100+
"-moz-transform": "scale(" + settings.zoom + ")",
101+
"-o-transform": "scale(" + settings.zoom + ")",
102+
"transform": "scale(" + settings.zoom + ")"
103+
}).one('webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend', function(e) {
104+
if (typeof settings.afterZoom == 'function') settings.afterZoom(img.parent(), "in");
105+
});
106+
if (typeof settings.onZoom == 'function') settings.onZoom(img.parent(), "in");
107+
} else {
108+
if (typeof settings.beforeZoom == 'function') settings.beforeZoom(img.parent(), "out");
109+
img.css({
110+
"-webkit-transform": "scale(" + settings.initZoom + ")",
111+
"-moz-transform": "scale(" + settings.initZoom + ")",
112+
"-o-transform": "scale(" + settings.initZoom + ")",
113+
"transform": "scale(" + settings.initZoom + ")"
114+
}).one('webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend', function(e) {
115+
if (typeof settings.afterZoom == 'function') settings.afterZoom(img.parent(), "in");
116+
});
117+
if (typeof settings.onZoom == 'function') settings.onZoom(img.parent(), "out");
118+
}
119+
120+
});
121+
122+
// Function Check if the when the element appears on the screen
123+
124+
$.fn.is_on_screen = function(originY){
125+
var win = el;
126+
var viewport = {
127+
top : originY
128+
};
129+
130+
viewport.bottom = viewport.top + $(window).height() ;
131+
132+
var bounds = this.offset();
133+
134+
135+
bounds.top = this.offset().top;
136+
bounds.bottom = this.offset().top + this.height();
137+
return (!(viewport.bottom - settings.offsetBottom < bounds.top || viewport.top - settings.offsetTop > bounds.bottom ));
138+
};
139+
140+
141+
});
142+
143+
}
144+
145+
146+
}(window.jQuery);

js/theme.js

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
$(window).load(function(){
2+
$(".zoom-images").zoomScroller({
3+
animationTime: 2000,
4+
easing: "ease",
5+
initZoom: 1.15,
6+
zoom: 1
7+
});
8+
});
9+
10+
$(document).ready(function() {
11+
12+
$("body").addClass("js");
13+
14+
$("a.scrollto").click(function(e) {
15+
e.preventDefault();
16+
var el = $($(this).attr("href"));
17+
18+
$('html, body').animate({
19+
scrollTop: el.offset().top - 53
20+
}, 1000);
21+
});
22+
23+
$("#select-options a").click(function(e) {
24+
$("#select-options li").removeClass("active");
25+
$(this).parent().addClass("active");
26+
$("body").attr("class", "");
27+
$("body").addClass("fus-" + $(this).attr("href").substring(1));
28+
});
29+
30+
$(window).scroll(function () {
31+
32+
if ($(this).scrollTop() > 695) {
33+
$(".navbar").addClass("fus-navbar-solid");
34+
} else {
35+
$(".navbar").removeClass("fus-navbar-solid");
36+
}
37+
38+
});
39+
});

params.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
{"name":"Koelnapi.de","tagline":"Website","body":"### Welcome to GitHub Pages.\r\nThis automatic page generator is the easiest way to create beautiful pages for all of your projects. Author your page content here using GitHub Flavored Markdown, select a template crafted by a designer, and publish. After your page is generated, you can check out the new branch:\r\n\r\n```\r\n$ cd your_repo_root/repo_name\r\n$ git fetch origin\r\n$ git checkout gh-pages\r\n```\r\n\r\nIf you're using the GitHub for Mac, simply sync your repository and you'll see the new branch.\r\n\r\n### Designer Templates\r\nWe've crafted some handsome templates for you to use. Go ahead and continue to layouts to browse through them. You can easily go back to edit your page before publishing. After publishing your page, you can revisit the page generator and switch to another theme. Your Page content will be preserved if it remained markdown format.\r\n\r\n### Rather Drive Stick?\r\nIf you prefer to not use the automatic generator, push a branch named `gh-pages` to your repository to create a page manually. In addition to supporting regular HTML content, GitHub Pages support Jekyll, a simple, blog aware static site generator written by our own Tom Preston-Werner. Jekyll makes it easy to create site-wide headers and footers without having to copy them across every page. It also offers intelligent blog support and other advanced templating features.\r\n\r\n### Authors and Contributors\r\nYou can @mention a GitHub username to generate a link to their profile. The resulting `<a>` element will link to the contributor's GitHub Profile. For example: In 2007, Chris Wanstrath (@defunkt), PJ Hyett (@pjhyett), and Tom Preston-Werner (@mojombo) founded GitHub.\r\n\r\n### Support or Contact\r\nHaving trouble with Pages? Check out the documentation at http://help.github.com/pages or contact [email protected] and we’ll help you sort it out.\r\n","google":"","note":"Don't delete this file! It's used internally to help with page regeneration."}
1+
{
2+
"body": "### Welcome to GitHub Pages.\r\nThis automatic page generator is the easiest way to create beautiful pages for all of your projects. Author your page content here using GitHub Flavored Markdown, select a template crafted by a designer, and publish. After your page is generated, you can check out the new branch:\r\n\r\n```\r\n$ cd your_repo_root/repo_name\r\n$ git fetch origin\r\n$ git checkout gh-pages\r\n```\r\n\r\nIf you're using the GitHub for Mac, simply sync your repository and you'll see the new branch.\r\n\r\n### Designer Templates\r\nWe've crafted some handsome templates for you to use. Go ahead and continue to layouts to browse through them. You can easily go back to edit your page before publishing. After publishing your page, you can revisit the page generator and switch to another theme. Your Page content will be preserved if it remained markdown format.\r\n\r\n### Rather Drive Stick?\r\nIf you prefer to not use the automatic generator, push a branch named `gh-pages` to your repository to create a page manually. In addition to supporting regular HTML content, GitHub Pages support Jekyll, a simple, blog aware static site generator written by our own Tom Preston-Werner. Jekyll makes it easy to create site-wide headers and footers without having to copy them across every page. It also offers intelligent blog support and other advanced templating features.\r\n\r\n### Authors and Contributors\r\nYou can @mention a GitHub username to generate a link to their profile. The resulting `<a>` element will link to the contributor's GitHub Profile. For example: In 2007, Chris Wanstrath (@defunkt), PJ Hyett (@pjhyett), and Tom Preston-Werner (@mojombo) founded GitHub.\r\n\r\n### Support or Contact\r\nHaving trouble with Pages? Check out the documentation at http://help.github.com/pages or contact [email protected] and we\u2019ll help you sort it out.\r\n",
3+
"google": "",
4+
"name": "Koelnapi.de",
5+
"note": "Don't delete this file! It's used internally to help with page regeneration.",
6+
"tagline": "Website"
7+
}

pics/background.png

-781 KB
Binary file not shown.

pics/face.png

-3 KB
Binary file not shown.

pics/header_pic.png

-440 KB
Binary file not shown.

pics/koelnapi_horizontal_1000.png

-5.64 KB
Binary file not shown.

pics/next_event.png

-4.91 KB
Binary file not shown.

pics/next_event_icon1.png

-3.46 KB
Binary file not shown.

pics/next_event_icon2.png

-3.34 KB
Binary file not shown.

pics/next_event_r.png

-5.33 KB
Binary file not shown.

pics/screenshot1.png

-25.2 KB
Binary file not shown.

pics/screenshot2.png

-60.2 KB
Binary file not shown.

pics/tweet.png

-3.22 KB
Binary file not shown.

test

Whitespace-only changes.

0 commit comments

Comments
 (0)