Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Full page Slide with jQuery and ajax

Tags:

jquery

ajax

php

Looking to implement a solution on a personal project but don't know if it is possible. Would love to have two buttons on left and right of page where if clicked would take you to new page or previous page.

Screenshot:

But here's the kicker, There will be fullscreen stretched bg's. and the two arrows will be positioned 100% full width of browser.

Doe's anyone know of a solution to this problem?

like image 509
Timothy Reed Avatar asked Mar 16 '10 21:03

Timothy Reed


2 Answers

You can use this jquery plugin to create fullscreen slider (i think you want to slider that i see in example website). It has good documentation. And also you can create slider from your html. I mean it doesn't only need images.

like image 93
the_bluescreen Avatar answered Nov 06 '22 01:11

the_bluescreen


I'd recommend this plugin Fullpage.js - http://alvarotrigo.com/fullPage/

<div id="fullpage">
<div class="section">my section 1</div>
<div class="section">my section 2</div>

$(document).ready(function() {
$('#fullpage').fullpage();
});
like image 43
Raja Khoury Avatar answered Nov 06 '22 02:11

Raja Khoury