Skip to main content

Scoll in Animation using ScrollMagic.js Plugin

    In this tutorial, we will learn how to create a scrolling text effect using the ScrollMagic.js plugin. This powerful JavaScript library allows us to easily create complex scrolling animations and interactions. We will be using the ScrollMagic.js plugin to create a scrolling text effect that can be used to add dynamic and engaging elements to your website or web application. Whether you're a beginner or an experienced developer, this tutorial will provide you with the knowledge and tools you need to create your own scrolling text effect using ScrollMagic.js.

index.html

<html>
      <head>
          <title>Fade In Text On Scrolling</title>
          <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
          <script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.6/ScrollMagic.min.js"></script>
          <link href="https://fonts.googleapis.com/css?family=Open+Sans|Staatliches" rel="stylesheet">
          <script src="js/scroll.js"></script>
          <link rel="stylesheet" href="css/style.css">
      </head>
      <body>
          <div class="container1">
              <h1>SCROLL DOWN</h1>
              <h2>some texts will appear</h2>
          </div>
          <div class="container2">
              <div class="fade-in">
                  <h1>LOREM IPSUM</h1>
                  <h2>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna
                  aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
                  Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint
                  occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</h2>
              </div>
          </div>
      </body>

  </html>

style.css

html, body{
      margin: 0;
      width: 100%;
  }

  .container1{
      height: 800px;
      background-color: #263c63;
      text-align: center;
  }

  .container1 h1{
      font-family: 'Staatliches', cursive;
      font-size: 200px;
      letter-spacing: 0.1em;
      color: #9aeaf4;
      padding-top: 200px;
      margin: 0;
  }

  .container1 h2{
      font-size: 40px;
      font-family: 'Open Sans', sans-serif;
      margin:0;
      color: #fff;
  }

  .container2{
      height: 600px;
  }

  .fade-in{
      width: 100%;
      height: 400px;
      margin-top: 10%;
      text-align: center;
      opacity: 0;
      transform: translateY(50px);
      transition: all 1s ease-out;
  }

  .fade-in.show{
      opacity: 1;
      transform: translateY(0);
  }

  .fade-in h1{
      font-family: 'Staatliches', cursive;
      margin: 0;
      font-size: 120px;
      letter-spacing: 0.1em;
  }

  .fade-in h2{
      font-family: 'Open Sans', sans-serif;
      font-weight: lighter;
      letter-spacing: 0.1em;
      line-height: 1.5;
      width: 70%;
      font-size: 20px;
      margin-left: 15%;
  }

scroll.js

$(document).ready(function(){

      var controller = new ScrollMagic.Controller();

      var ourScene = new ScrollMagic.Scene({
          triggerElement: '.fade-in',
          reverse: false
      })
          .setClassToggle('.fade-in', 'show')
          .addTo(controller);
  });

Watch Full Video Here

Comments

Popular posts from this blog

Auto Image Slider using CSS Only

     Are you ready to learn how to create an image slider using only CSS? Look no further! In this tutorial, we'll walk you through the step-by-step process of building a sleek and modern image slider using HTML and CSS. No JavaScript required! In this tutorial We'll cover setting up the HTML structure for the slider.       This will include creating the container element and styling the slider with CSS. You'll also learn how to add transitions and animations to create a smooth sliding effect. By the end of this tutorial, you'll have a fully functional image slider that you can use on your own website. Whether you're a beginner or an experienced developer, this tutorial has something for you. So let's get started creating your own image slider using CSS today! index.html <html> <head> <meta charset="utf-8"> <link rel="stylesheet" href="css/style.css"&

Banner image/Hero Image Tutorial with HTML and CSS

     In this video, we will be creating a banner/hero image using CSS. A banner or hero image is a large, full-width image that is typically placed at the top of a website or webpage and is used to visually represent the content or purpose of the page. We will be using CSS properties such as background-image and background-size to create the banner/hero image, as well as some basic layout techniques to ensure that it looks great on all devices. By the end of this tutorial, you will have a fully functional banner/hero image that you can use on your own website. So, if you want to learn how to create a banner/hero image using CSS, be sure to follow this tutorial till the end.   index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Tutorial 6</title> <link rel="stylesheet" href="css/tutorial6.css"> <link href="https://fonts.googleapis.co

Image with Accordion Effect on Hover using CSS and HTML

     Hey there, folks! Are you looking to jazz up your website's image galleries? Well, you've come to the right place! In this tutorial, we'll show you how to create an image with accordion effect on hover using HTML and CSS. First off, let's chat about HTML and CSS. HTML is like the building blocks of web pages, while CSS adds style and personality to your website.       By combining these two, you can create some seriously cool designs that'll knock your user's socks off!In this tutorial, we're gonna be using CSS animation effects to make an accordion effect on an image when a user hovers over it. It's a slick way to add a bit of movement and interactivity to your web design. To get started, we'll walk you through creating a basic HTML structure for your image.       Then, we'll apply some CSS styles to give it that fancy accordion look. Finally, we'll create a hover effect using CSS animation that'll make your image expand and colla