Home >Web Front-end >CSS Tutorial >How can I create responsive horizontal page sliding using jQuery for a website with varying heights?

How can I create responsive horizontal page sliding using jQuery for a website with varying heights?

DDD
DDDOriginal
2024-10-29 13:10:30907browse

How can I create responsive horizontal page sliding using jQuery for a website with varying heights?

Horizontal Responsive Page Sliding

To design a responsive page navigation similar to the provided image, consider the following jQuery solution:

  • Calculate Dimensions: Determine the number of slides, set the wrapper width, and set each slide's width accordingly.
  • Slide Animation: Bind a click event to navigation links that animates the wrapper's left-margin to reveal the corresponding slide.
  • Active Link: Toggle the "selected" class for the clicked link to highlight the active page.

This approach ensures that the navigation adapts to screen size and handles pages with varying heights, eliminating gaps. Additionally, it utilizes a single menu occurrence to minimize markup and supports a dynamic number of slides.

<code class="js">$(document).ready(function () {
  var slideNum = $('.page').length,
    wrapperWidth = 100 * slideNum,
    slideWidth = 100 / slideNum;
  $('.wrapper').width(wrapperWidth + '%');
  $('.page').width(slideWidth + '%');

  $('a.scrollitem').click(function () {
    $('a.scrollitem').removeClass('selected');
    $(this).addClass('selected');

    var slideNumber = $($(this).attr('href')).index('.page'),
      margin = slideNumber * -100 + '%';

    $('.wrapper').animate({
      marginLeft: margin
    }, 1000);
    return false;
  });
});</code>
<code class="css">html,
body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  position: relative;
}

nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
}

.wrapper {
  height: 100%;
  background: #263729;
}

.page {
  float: left;
  background: #992213;
  min-height: 100%;
  padding-top: 30px;
}

#page-1 {
  background: #0C717A;
}

#page-2 {
  background: #009900;
}

#page-3 {
  background: #0000FF;
}

a {
  color: #FFF;
}

a.selected {
  color: red;
}

.simulate {
  height: 2000px;
}</code>
<code class="html"><script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<div class="wrapper">
  <nav>
    <a href="#page-1" class="scrollitem selected">page 1</a>
    <a href="#page-2" class="scrollitem">page 2</a>
    <a href="#page-3" class="scrollitem">page 3</a>
  </nav>
  <div id="page-1" class="page">
    <h3>page 1</h3>
    <div class="simulate">Simulated content heigher than 100%</div>
  </div>
  <div id="page-2" class="page">
    <h3>page 2</h3>
    <div class="simulate">Simulated content heigher than 100%</div>
  </div>
  <div id="page-3" class="page">
    <h3>page 3</h3>
    <div class="simulate">Simulated content heigher than 100%</div>
  </div>
</div></code>

The above is the detailed content of How can I create responsive horizontal page sliding using jQuery for a website with varying heights?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn