| Current Path : /home/happyrenas/old/happy-and-pay.fr/js/fullpage/examples/ |
Linux webd005.cluster105.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 |
| Current File : /home/happyrenas/old/happy-and-pay.fr/js/fullpage/examples/gradientBackgrounds.html |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Gradient backgrounds - fullPage.js</title>
<meta name="author" content="Alvaro Trigo Lopez" />
<meta name="description" content="fullPage full-screen backgrounds." />
<meta name="keywords" content="fullpage,jquery,demo,screen,fullscreen,backgrounds,full-screen" />
<meta name="Resource-type" content="Document" />
<link rel="stylesheet" type="text/css" href="../jquery.fullPage.css" />
<link rel="stylesheet" type="text/css" href="examples.css" />
<style>
/* Style for our header texts
* --------------------------------------- */
h1{
font-size: 5em;
font-family: arial,helvetica;
color: #fff;
margin:0;
padding:0;
}
.intro p{
color: #fff;
}
/* Centered texts in each section
* --------------------------------------- */
.section{
text-align:center;
}
/* Defining each section background and styles
* --------------------------------------- */
#section0{
background: -webkit-gradient(linear, top left, bottom left, from(#4bbfc3), to(#7baabe));
background: -webkit-linear-gradient(#4BBFC3, #7BAABE);
background: linear-gradient(#4BBFC3,#7BAABE);
}
#section2{
background: -webkit-gradient(linear, top left, bottom left, from(#969ac6), to(#636F8F));
background: -webkit-linear-gradient(#969AC6, #636F8F);
background: linear-gradient(#969AC6,#636F8F);
}
/*Adding background for the slides
* --------------------------------------- */
#slide1{
background: -webkit-gradient(linear, top left, bottom left, from(#7baabe), to(#969ac6));
background: -webkit-linear-gradient(#7BAABE, #969AC6);
background: linear-gradient(#7BAABE,#969AC6);
}
#slide2{
background: -webkit-gradient(linear, top left, bottom left, from(#92a1ca), to(#76c2bd));
background: -webkit-linear-gradient(#92a1ca, #76c2bd);
background: linear-gradient(#92a1ca,#76c2bd);
}
/* Bottom menu
* --------------------------------------- */
#infoMenu li a {
color: #fff;
}
</style>
<!--[if IE]>
<script type="text/javascript">
var console = { log: function() {} };
</script>
<![endif]-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js"></script>
<script type="text/javascript" src="../jquery.fullPage.js"></script>
<script type="text/javascript" src="examples.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#fullpage').fullpage();
});
</script>
</head>
<body>
<select id="demosMenu">
<option selected>Choose Demo</option>
<option id="backgrounds">Background images</option>
<option id="backgroundVideo">Background video</option>
<option id="gradientBackgrounds">Gradient backgrounds</option>
<option id="backgroundsFixed">Fixed fullscreen backgrounds</option>
<option id="looping">Looping</option>
<option id="noAnchor">No anchor links</option>
<option id="scrollingSpeed">Scrolling speed</option>
<option id="easing">Easing</option>
<option id="callbacks">Callbacks</option>
<option id="css3">CSS3</option>
<option id="continuous">Continuous scrolling</option>
<option id="normalScroll">Normal scrolling</option>
<option id="scrollBar">Scroll bar enabled</option>
<option id="scrolling">Scroll inside sections and slides</option>
<option id="navigationV">Vertical navigation dots</option>
<option id="navigationH">Horizontal navigation dots</option>
<option id="fixedHeaders">Fixed headers</option>
<option id="apple">Apple iPhone demo (animations)</option>
<option id="oneSection">One single section</option>
<option id="responsiveHeight">Responsive Height</option>
<option id="responsiveWidth">Responsive Width</option>
<option id="methods">Methods</option>
</select>
<div id="fullpage">
<div class="section " id="section0"><h1>Gradient backgrounds</h1></div>
<div class="section" id="section1">
<div class="slide" id="slide1"><h1>Soft graduated colors</h1></div>
<div class="slide" id="slide2"><h1>Even for each slide if you want</h1></div>
</div>
<div class="section" id="section2">
<div class="intro">
<h1>Feel free!</h1>
<p>Using CSS3 gradients you can play as much as you want with graduated colors</p>
</div>
</div>
</div>
</body>
</html>