Posts

Loading Text With Water Animation Using HTML & CSS

Image
Watch Video - https://youtu.be/kBPgZYOKda4 In this post, I’ll show you how to make a ‘ text filling with liquid ’ effect. It can be used for preloaders, titles. Doing this with CSS would be pretty simple, if not for one problem: to use text as a mask, we require the property  background-clip:text; HTML Code : <div class="loading wave"> Loading </div> CSS Code : .loading { text-transform: uppercase; font-weight: bold; font-size: 100pt; text-align: center; height: 120px; line-height: 110px; display: block; } .wave { background-image: url(water.png); -moz-background-clip: text; -webkit-background-clip: text; -o-background-clip: text; background-clip: text; color: transparent; text-shadow: 0px 0px rgba(255,255,255,0.06); animation: wave-animation 1s infinite linear, loading-animation 10s infinite linear alternate; background-size: 200px 100px; ba...

CSS Ellipsis | How To Truncate Text With An Ellipsis | Using of CSS Text-Overflow

Image
Watch Video - https://youtu.be/6fcmTfIIxRc The text-overflow  property specifies how overflowed content that is not displayed should be signaled to the user. It can be clipped, display an ellipsis (...) , or display a custom string. In this video, we are going to take a look at the " Text-Overflow " property in CSS. It's used to handle cases where text overflows its container. In this tutorial, you will learn how to truncate/clip/cut/hide text with an Ellipsis using CSS. CSS Code : .box p { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; }

Water Ripple Effects using pure CSS | No JavaScript | Neumorphism UI Button Design 2020

Image
Watch Video -   https://youtu.be/8t-Mrad6Cdk In this video, I will show you how to create a Neumorphism button and create Water Ripple Effect using Pure CSS, No JavaScript in quick, easy, and simple steps. Click the button to animate the Wave effect CSS tutorial. CSS Code : button {     border: none;     border-radius: 40px;     padding: 20px 30px;     font-size: 20px;     text-transform: uppercase;     cursor: pointer;     color: #34495e;     letter-spacing: 2px;     background-color: transparent;     outline: none;     box-shadow: -7px -7px 17px rgba(255,255,255,0.6),         7px 7px 17px rgba(70,70,70,0.12); } .wave {     background-position: center;     transition: background 0.8s; } .wave:hover {     background: #f2f2f3 radial-gradient(circle, transparent 1%, #f2f2f3 1%) center/15000%; ...

Amazing Loading Animation Using Only HTML & CSS | Pure CSS Loader for your website using HTML & CSS

Image
Watch Video -    https://youtu.be/DT8DPe3HLHA In this video, we are going to build an animated CSS loader without JavaScript & jQuery. Pure CSS Loader - Animated Loading effect for your website using HTML and CSS (No Javascript). Note:   You should also include a -WebKit- prefix for browsers that do not support animation and transform properties. HTML Code -  <section class="loader">         <div class="loader-text">              <span style="--i:1;">A</span>              <span style="--i:2;">N</span>              <span style="--i:3;">Y</span>          </div> </section> CSS Code - Animation Part Only .loader-text span {     animation: animate 1s ease-in-out infinite;     animation-delay: calc(0.1s * var(--i...

Parallax Scrolling Effect using HTML, CSS | NO JavaScript | 3d Animated Scrolling using preserve-3d

Image
Watch Video -   https://youtu.be/2xARGKjnX4E In this video, I will show you a very basic implementation of a Parallax effect using HTML and CSS. Create 3d animated scrolling using CSS. Parallax scrolling is a web site trend where the background content (i.e. an image) is moved at a different speed than the foreground content while scrolling. Note: Parallax scrolling does not always work on mobile devices/smartphones. However, you can use media queries to turn off the effect on mobile devices.

Radio Button design with NEUMORPHISM UI || CSS3 Custom Radio Button design with Soft UI 2020

Image
Watch Video -   https://youtu.be/8ncKl3dulxw Neumorphism is predicted to be the biggest trend of 2020. Here is a simple tutorial demonstrating the Neumorphism Effect with CSS.  In this video, create custom radio button design with Neumorphism (Latest UI trends) Effect. CSS3 Custom Radio Button design with Soft UI design. Code Icon Content : content: '✔'; OR YOU USE font-family: FontAwesome; content: '\f00c';     

CSS3 Soft UI Button || Neumorphism UI Button ON / OFF Design || Pure CSS Checkbox Design

Image
Watch Video -   https://youtu.be/SSzuc7yoAE0 Creating an ON/OFF switch using a checkbox with Neumorphism UI. 2020 Soft UI Design. Design a checkbox and get some cool effects of this.  Font awasome CDN :     <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css" rel="stylesheet" />     <link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"> Icon Code :  " \f011 ";