Skip to main content

Posts

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|S

Make a Simple Parallax Scrolling Effect for beginners

     In this Tutorial, we will show you how to create a simple parallax scrolling effect using only CSS. Parallax scrolling is a popular web design technique where background images move slower than foreground images, creating a 3D illusion as you scroll down the page. We'll be using CSS transforms and transitions to achieve this effect, so no JavaScript is required. Whether you're a beginner or an experienced web developer, this tutorial will provide you with the knowledge you need to add a touch of depth and movement to your website. So sit back, relax, and enjoy the tutorial.    index.html <!DOCTYPE html> <html> <head> <title>Parallax Scrolling</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" type="text/css" href="style.css"> <link href="https://fonts.googleapis.com/css?family=M

Create Side Navigation Bar using Javascript

  In this tutorial, we will be creating a side menu bar using JavaScript. The side menu bar will allow users to easily navigate through your website and access different pages and content. We will start by setting up the HTML and CSS for the side menu bar, and then we will use JavaScript to add the functionality to toggle the menu bar open and closed. By the end of this tutorial, you will have a fully functional side menu bar that can be easily added to any website. index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <link rel="stylesheet" href="css/style.css"> <title>Tutorial 8</title> <link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet"> <script type="text/javascript" src="js/sidemenubar.js"></script>

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

Fade In Hover Overlay Image using CSS

     In this tutorial, we will create a fade in hover overlay effect for images using CSS. This effect is useful for displaying additional information or context about an image when the user hovers their mouse over it. By the end of this tutorial, you will have a fully functional fade in hover overlay that you can use on your own website. So, if you want to learn how to create a fade in hover overlay image effect using CSS, be sure to watch this video at the end of this article.  tutorial5.html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Tutorial 5</title> <link rel="stylesheet" href="css/tutorial5.css"> <link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet"> </head> <body> <div class="img-wrapper"> <img src="ima

Text over Image using CSS

       In this tutorial, we'll learn how to add text over an image using CSS. We'll cover how to position the text and style it to make it stand out against the image. Whether you're a beginner looking to learn CSS or a experienced developer looking to brush up on your skills, this tutorial is for you! By the end of the tutorial,  you'll be able to add text over images like a pro. So let's get started. text_over_image.html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Text Over Image</title> <link rel="stylesheet" href="css/text_over_image.css"> <link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet"> </head> <body> <div class="content-wrapper"> <img src="image/sample.jpg">

Responsive Navbar Using Jquery

            Welcome to our tutorial on how to create a responsive navbar using jQuery. In this post, we will walk you through the steps to create a navbar that adjusts to the size of the screen and displays a dropdown menu on smaller screens. We will be using jQuery to handle the toggle event for the dropdown menu and some basic CSS to style the navbar. By the end of this tutorial, you will have a fully functional responsive navbar for your website. So let's get started! responsive_navbar.html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewpost" content="width=device-width; maximum-scale=1"> <title>Responsive Navbar</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"> <script type="text/javascript" src="