Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

landing page updated #1

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added css/HelveticaBold.ttf
Binary file not shown.
Binary file added css/HelveticaNeue.ttf
Binary file not shown.
Binary file added css/X.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions css/bootstrap.min.css

Large diffs are not rendered by default.

66 changes: 66 additions & 0 deletions css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
@font-face {
font-family: hLight;
src: url(HelveticaNeue.ttf);
}
@font-face {
font-family: hBold;
src: url(HelveticaBold.ttf);
}
body, html {
width: 100%;
overflow: hidden;
margin: 0px;
padding: 0px;
font-family: hLight;
text-align: center;
}
#particles-js {
position: fixed;
top: 0px;
left: 0px;
height: 100vh;
width: 100vw;
}
.jumbotron {
background: transparent;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
h1 {
font-family: hBold;
font-size: 10rem !important;
color: #e62b1e !important;
}
h2 {
font-family: hBold;
font-size: 5rem;
position: relative;
top: -15px;
}
h1 > small {
position: relative;
top: -35px;
color: inherit;
}
#college-name {
transform-origin: -50% 0px;
transform: rotateX(-90deg);
}
.social-icons-list {
list-style-type: none;
padding: 0px;
position: relative;
top: 45px;
}
span {
position: relative;
}
.social-icons {
display: inline;
margin-right: 25px;
}
.social-icons > img {
width: 42px;
}
Binary file added favicon.ico
Binary file not shown.
Binary file added fonts/glyphicons-halflings-regular.eot
Binary file not shown.
288 changes: 288 additions & 0 deletions fonts/glyphicons-halflings-regular.svg
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 fonts/glyphicons-halflings-regular.ttf
Binary file not shown.
Binary file added fonts/glyphicons-halflings-regular.woff
Binary file not shown.
Binary file added fonts/glyphicons-halflings-regular.woff2
Binary file not shown.
59 changes: 59 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>TedX Nit Kurukshetra</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="TEDx NIT, Kurukshetra" />
<meta name="robots" content="index, follow" />
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indentation not followed from line 8-21. Set the indentation to 4 spaces.

<link rel="author" href="http://gawds.in" />
<meta name="author" content="gawds" />
<!-- Open Graph data -->
<meta property="og:title" content="TEDx NITK" />
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change content to content="TEDxNITKurukshetra"

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Make the same changes to Twitter card and Schema.org markup for Google+ sections. It helps SEO to find our website easily.

<meta property="og:type" content="website" />
<meta property="og:description" content="TEDx NIT, Kurukshetra" />
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change the description content to TEDx NITKurukshetra. Coming soon. <Add extra details.>

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Make the same changes to Twitter card and Schema.org markup for Google+ sections.

<!-- Twitter Card data -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="TEDx NITK" />
<meta name="twitter:description" content="TEDx NIT, Kurukshetra" />
<!-- Schema.org markup for Google+ -->
<meta itemprop="name" content="TEDx NITK">
<meta itemprop="description" content="TEDx NIT, Kurukshetra">

<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="shortcut icon" href="favicon.ico" />
</head>
<body>
<div id="particles-js"></div>
<div class="container">
<div class="jumbotron">
<h1>TED<small>x</small></h1>
<h2 id="college-name">Nit Kurukshetra</h2>
<h3>
<span>C</span>
<span>O</span>
<span>M</span>
<span>I</span>
<span>N</span>
<span>G</span>
<span>&nbsp;</span>
<span>S</span>
<span>O</span>
<span>O</span>
<span>N</span>
</h3>
<ul class="social-icons-list">
<li class="social-icons"><img src="png/facebook.png"</li>
<li class="social-icons"><img src="png/twitter.png"></li>
<li class="social-icons"><img src="png/youtube.png"></li>
<li class="social-icons"><img src="png/mail.png"></li>
</ul>
</div>
</div>
</body>
<script src="js/jquery.min.js"></script>
<script src="js/TweenMax.min.js"></script>
<script src="js/particles.min.js"></script>
<script src="js/main.js"></script>
</html>
17 changes: 17 additions & 0 deletions js/TweenMax.min.js

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions js/bootstrap.min.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions js/jquery.min.js

Large diffs are not rendered by default.

140 changes: 140 additions & 0 deletions js/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@
function swiwel() {
TweenMax.to("#college-name", 2.5, {
rotationX: 0,
delay: 0.5,
ease: Elastic.easeOut.config(1, 0.2)
}
);
TweenMax.staggerFrom(".social-icons img", 1, {
scale: 2,
opacity: 0,
delay: 1,
ease: Bounce.easeOut
},
0.2
);
TweenMax.staggerFrom("span", 0.7, {
opacity: 0,
delay: 2,
repeat: 3,
yoyo: true,
ease: Bounce.easeOut
},
0.1
);
}
swiwel();


particlesJS('particles-js',
{
"particles": {
"number": {
"value": 218,
"density": {
"enable": true,
"value_area": 1736.2070190114673
}
},
"color": {
"value": "#de841e"
},
"shape": {
"type": "circle",
"stroke": {
"width": 0,
"color": "#000000"
},
"polygon": {
"nb_sides": 3
},
"image": {
"src": "img/github.svg",
"width": 100,
"height": 100
}
},
"opacity": {
"value": 0.5,
"random": false,
"anim": {
"enable": false,
"speed": 1,
"opacity_min": 0.1,
"sync": false
}
},
"size": {
"value": 3,
"random": true,
"anim": {
"enable": false,
"speed": 0,
"size_min": 0.1,
"sync": false
}
},
"line_linked": {
"enable": true,
"distance": 150,
"color": "#ff8700",
"opacity": 0.4,
"width": 1
},
"move": {
"enable": true,
"speed": 6,
"direction": "none",
"random": false,
"straight": false,
"out_mode": "out",
"bounce": false,
"attract": {
"enable": false,
"rotateX": 600,
"rotateY": 1200
}
}
},
"interactivity": {
"detect_on": "canvas",
"events": {
"onhover": {
"enable": false,
"mode": "repulse"
},
"onclick": {
"enable": false,
"mode": "push"
},
"resize": true
},
"modes": {
"grab": {
"distance": 400,
"line_linked": {
"opacity": 1
}
},
"bubble": {
"distance": 400,
"size": 40,
"duration": 2,
"opacity": 8,
"speed": 3
},
"repulse": {
"distance": 200,
"duration": 0.4
},
"push": {
"particles_nb": 4
},
"remove": {
"particles_nb": 2
}
}
},
"retina_detect": true
}
);
9 changes: 9 additions & 0 deletions js/particles.min.js

Large diffs are not rendered by default.

110 changes: 110 additions & 0 deletions js/particlesjs-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
{
"particles": {
"number": {
"value": 218,
"density": {
"enable": true,
"value_area": 1736.2070190114673
}
},
"color": {
"value": "#de841e"
},
"shape": {
"type": "circle",
"stroke": {
"width": 0,
"color": "#000000"
},
"polygon": {
"nb_sides": 3
},
"image": {
"src": "img/github.svg",
"width": 100,
"height": 100
}
},
"opacity": {
"value": 0.5,
"random": false,
"anim": {
"enable": false,
"speed": 1,
"opacity_min": 0.1,
"sync": false
}
},
"size": {
"value": 3,
"random": true,
"anim": {
"enable": false,
"speed": 0,
"size_min": 0.1,
"sync": false
}
},
"line_linked": {
"enable": true,
"distance": 150,
"color": "#ff8700",
"opacity": 0.4,
"width": 1
},
"move": {
"enable": true,
"speed": 6,
"direction": "none",
"random": false,
"straight": false,
"out_mode": "out",
"bounce": false,
"attract": {
"enable": false,
"rotateX": 600,
"rotateY": 1200
}
}
},
"interactivity": {
"detect_on": "canvas",
"events": {
"onhover": {
"enable": false,
"mode": "repulse"
},
"onclick": {
"enable": false,
"mode": "push"
},
"resize": true
},
"modes": {
"grab": {
"distance": 400,
"line_linked": {
"opacity": 1
}
},
"bubble": {
"distance": 400,
"size": 40,
"duration": 2,
"opacity": 8,
"speed": 3
},
"repulse": {
"distance": 200,
"duration": 0.4
},
"push": {
"particles_nb": 4
},
"remove": {
"particles_nb": 2
}
}
},
"retina_detect": true
}
Binary file added logo.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 png/facebook.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 png/mail.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 png/twitter.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 png/youtube.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.