Elephants Full screen site

Developer
Size
3,981 Kb
Views
2,024

How do I make an elephants full screen site?

What is a elephants full screen site? How do you make a elephants full screen site? This script and codes were developed by Orrin Ward on 01 February 2023, Wednesday.

Elephants Full screen site Previews

Elephants Full screen site - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Elephants Full screen site</title> <style> /* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */ body, html { height: 100%; width: 100%; padding: 0; margin: 0; background-color: #F00;
}
#container { width: 100%; height: 100%; position: relative;
}
#navigation { position: fixed; top: 0; left: 40px; width: 200px; height: 600px; background: grey;
}
#navigation a { cursor: pointer; cursor: hand;
}
#navigation a :hover { opacity: 0.5;
}
a.project { display: block; width: 100%; height: 33.3333333%; background-size: cover; background-position: center center; position: relative; transition: all 0.8s linear;
}
a.project:hover { opacity: 0.6;
}
a.project .description { position: absolute; right: 0; bottom: 10px; background: #000; color: #FFF; padding: 10px 20px;
}
a.project .description h1 { font-size: 26px; margin-bottom: 0; line-height: 0.8em;
}
a.project .description h2 { font-size: 18px; margin-bottom: 0; line-height: 0.8em;
}
.one { background-image: url("http://a3.4ormat.com/vfs/12567/thumbs/1240343/0x550.jpg");
}
.two { background-image: url("http://a1.4ormat.com/vfs/12567/thumbs/1072869/0x550.jpg");
}
.three { background-image: url("http://beatrixcarlotta.files.wordpress.com/2012/06/6.jpg");
}
.four { background-image: url("http://a2.4ormat.com/vfs/12708/thumbs/408703/960x0.jpg");
}
.five { background-image: url("http://a2.4ormat.com/vfs/12708/thumbs/711262/900x0.jpg?1343080337142");
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <div id='container'> <a class='project one live video'> <span class='description'> <h1>Title</h1> <h2>Subtitle</h2> </span> </a> <a class='project two video short'> <span class='description'> <h1>Title</h1> <h2>Subtitle</h2> </span> </a> <a class='project three photo live'> <span class='description'> <h1>Title</h1> <h2>Subtitle</h2> </span> </a> <a class='project four other photo'> <span class='description'> <h1>Title</h1> <h2>Subtitle</h2> </span> </a> <a class='project five live video'> <span class='description'> <h1>Title</h1> <h2>Subtitle</h2> </span> </a> <a class='project one video'> <span class='description'> <h1>Title</h1> <h2>Subtitle</h2> </span> </a> <a class='project two short'> <span class='description'> <h1>Title</h1> <h2>Subtitle</h2> </span> </a> <a class='project three live'> <span class='description'> <h1>Title</h1> <h2>Subtitle</h2> </span> </a> <a class='project four photo'> <span class='description'> <h1>Title</h1> <h2>Subtitle</h2> </span> </a> <a class='project five photo'> <span class='description'> <h1>Title</h1> <h2>Subtitle</h2> </span> </a> <div id='navigation'> <ul> <li> <a class='home'>Home</a> </li> <li> <a class='about'>About</a> </li> <li> <a class='live'>Live Performance</a> </li> <li> <a class='video'>Short Film</a> </li> <li> <a class='photo'>Photoshoots</a> </li> <li> <a class='other'>Other</a> </li> </ul> </div>
</div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Elephants Full screen site - Script Codes CSS Codes

body, html { height: 100%; width: 100%; padding: 0; margin: 0; background-color: #F00;
}
#container { width: 100%; height: 100%; position: relative;
}
#navigation { position: fixed; top: 0; left: 40px; width: 200px; height: 600px; background: grey;
}
#navigation a { cursor: pointer; cursor: hand;
}
#navigation a :hover { opacity: 0.5;
}
a.project { display: block; width: 100%; height: 33.3333333%; background-size: cover; background-position: center center; position: relative; transition: all 0.8s linear;
}
a.project:hover { opacity: 0.6;
}
a.project .description { position: absolute; right: 0; bottom: 10px; background: #000; color: #FFF; padding: 10px 20px;
}
a.project .description h1 { font-size: 26px; margin-bottom: 0; line-height: 0.8em;
}
a.project .description h2 { font-size: 18px; margin-bottom: 0; line-height: 0.8em;
}
.one { background-image: url("http://a3.4ormat.com/vfs/12567/thumbs/1240343/0x550.jpg");
}
.two { background-image: url("http://a1.4ormat.com/vfs/12567/thumbs/1072869/0x550.jpg");
}
.three { background-image: url("http://beatrixcarlotta.files.wordpress.com/2012/06/6.jpg");
}
.four { background-image: url("http://a2.4ormat.com/vfs/12708/thumbs/408703/960x0.jpg");
}
.five { background-image: url("http://a2.4ormat.com/vfs/12708/thumbs/711262/900x0.jpg?1343080337142");
}

Elephants Full screen site - Script Codes JS Codes

$('#navigation ul li a.home').click(function(){ $('.project').slideDown(300);
});
$('#navigation ul li a.video').click(function(){	$('.project').not('.video').slideUp(300);	$('.project.video').slideDown(300);
});
$('#navigation ul li a.live').click(function(){	$('.project').not('.live').slideUp(300);	$('.project.live').slideDown(300);
});
$('#navigation ul li a.photo').click(function(){	$('.project').not('.photo').slideUp(300);	$('.project.photo').slideDown(300);
});
$('#navigation ul li a.other').click(function(){	$('.project').not('.other').slideUp(300);	$('.project.other').slideDown(300);
});
$('#navigation ul li a.about').click(function(){ alert('Not done yet!');
});
$('a.project').click(function(){ alert('Not done yet!');
});
Elephants Full screen site - Script Codes
Elephants Full screen site - Script Codes
Home Page Home
Developer Orrin Ward
Username orrinward
Uploaded February 01, 2023
Rating 3
Size 3,981 Kb
Views 2,024
Do you need developer help for Elephants Full screen site?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Orrin Ward (orrinward) Script Codes
Create amazing blog posts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!