SITE Expertise

SITE Expertise Site Expertise is the global provider of various web solutions in the world. we understand the unique requirements of a website. We at SITE (Avb.

SITE Is Technical Expertise) are determined to provide most cost effective and best quality services to our clients. We have partnered with some of the best names who are leading today’s IT industry, so that we would be able to introduce their services at our price. We know our clients better therefore we have been increasing the list of services provided by us so that we would be able to give mor

e flexible plans and discounts in more and more fields. We would appreciate all queries and suggestions from you. We begin your project with high dedication right from requirements gathering and definition, through the delivery and deployment, satisfying every business and technical requirements of the project. Our rich portfolio justifies the fact that we are a professional company offering high quality, cost effective risk managed web solutions. Our focus is on delivering a system that not only generates income, but also solves your business problems. Our Web Application development professionals have hands on experience in the field and ardently work on the project considering each and every customer requirement. for more info Please visit http://siteexpertise.in/

ORTHODOX PHARMACEUTICALGround floor, No 6/34 Portion No 3,Padma nagar main road,Vinayagapuram, Puthagaram,Chennai, Tamil...
07/09/2021

ORTHODOX PHARMACEUTICAL
Ground floor, No 6/34 Portion No 3,
Padma nagar main road,
Vinayagapuram, Puthagaram,
Chennai, Tamil Nadu, 600099

ORTHODOX PHARMACEUTICAL Ground floor, No 6/34 Portion No 3, Padma nagar main road, Vinayagapuram, Puthagaram, Chennai, Tamil Nadu, 600099

New Foundation Batch Start for UPSC / UP-PSC / RO / AROCrash Course for PSC 2021 For More Details Call / WhatsApp 965195...
11/03/2021

New Foundation Batch Start for UPSC / UP-PSC / RO / ARO
Crash Course for PSC 2021
For More Details Call / WhatsApp 9651950301 / 9651950305




















What Switzerland vote against full face covering means for the countrySwiss voters on Sunday narrowly voted in a binding referendum to ban “full face coverin...

New Foundation Batch Start for UPSC / UP-PSC / RO / AROCrash Course for PSC 2021 For More Details Call / WhatsApp 965195...
11/03/2021

New Foundation Batch Start for UPSC / UP-PSC / RO / ARO
Crash Course for PSC 2021
For More Details Call / WhatsApp 9651950301 / 9651950305






















The YUVA IAS trains the aspirants for various competitive examinations held by Union Public Service Commission (UPSC) and State Public Service Commission (SP...

Get UPSC Mains 2020 Test Series for Geography Optional(Total 10 Test) under the guidance of team YUVA IAS.Both Online & ...
07/11/2020

Get UPSC Mains 2020 Test Series for Geography Optional(Total 10 Test) under the guidance of team YUVA IAS.
Both Online & Offline Test Series are available.
Evaluation and Review both are done Online and sugestion are typed on the copied that have been uploaded.
Topic Coverd in these Tests are given below
1) Perspectives in Human Geography,
2) Economic Geography,
3) Population and settlement geography;
4) Regional Planning,
5) Models, Theories and Laws in Human Geography,
6) Geomorphology
7) Climatology
8) Oceanography
9) Biogeography
10) Environmental Geography
11) Physical Setting
12) Resources
13) Agriculture
14) Industry
15) Transport
16) Cultural Setting
17) Settlements
18) Regional Development and Planning
19) Political Aspect
20) Contemporary Issues
call/WhatsApp 9651950301 - 8595991658
For more details Please visit our website

YUVA IAS Institute is a Training Institute for UPSC Exams. Institute has a National Level Team of Mentors. Prayagraj (U.P.), Mukerjee Nagar & Old Rajendra Nagar (Delhi) and Bengaluru (Karnataka) are the current center of the Institute. YUVA IAS assures to Crack UPSC Exam in the FIRST Attempt under t...

25/06/2020

A bird sitting on the branch of a tree is not afraid of the branch shaking, because the bird trusts not the branches but its own wings.

23/06/2020

विद्या मित्रं प्रवासेषु ।

प्रवास में विद्या मित्र की कमी पूरी करती है ।

23/06/2019

You can view and join right away.

13/05/2019

Text Animate on Scroll


How to Animate Text On Scroll Up & Down? Solution: Text Animate On Scroll Using HTML CSS JavaScript.

On some websites when you scroll there text become animated. Not only texts, many others thing like cards and images also become animated on the scroll in some sites. This type of effect is a good choice for the user interface, and the website looks very attractive.

So, Today I will show you a similar type of effect using HTML, CSS, and JavaScript. Today I am sharing Text Animate On Scroll program. Basically, in this program when you scroll down the text divide in parts, and on scroll up text rejoin.

This program is a very good example to understand how to create an effect on the scroll. If you are a beginner, you will also understand the whole program easily. These type of program basically created by jQuery but can create this program using JavaScript as well.

If you even don’t get what is the program or animation effect which I am talking about, you can see the preview given below.

Text Animate On Scroll Source Code
Before sharing source code, I want to talk a little bit about this program. I had divided text in 4 parts, using 4 span tag. After that, I store parts of the text in JavaScript using const ( info )command. Then added some lines of codes for move text in parts in a different direction using JavaScript.

For creating this program you have to create 3 files. First for HTML, second for CSS, and third for JavaScript. Follow the steps for creating this program without any error.

Create an HTML file named ‘index.html‘ and put these codes given here below.

index.html






Animate Text on Scroll








Ashu
tosh
To
mar






Now create a CSS file named ‘style.css‘ and put these codes.

style.cssCSS

body {
margin: 0;
height: 300vh;
background: #333;
font-family: 'Anton', sans-serif;

overflow-x: hidden;
}
letters {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: crimson;
font-size: 3.5rem;
text-transform: uppercase;
perspective: 1200px;
}

body {
margin: 0;
height: 300vh;
background: #333;
font-family: 'Anton', sans-serif;

overflow-x: hidden;
}
letters {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: crimson;
font-size: 3.5rem;
text-transform: uppercase;
perspective: 1200px;
}

The final thing, Create a JavaScript file named ‘function.js‘ and put these codes.

function.jsJavaScript
/** function for scroll text **/
const $ = document.querySelector.bind(document);
const sc = $(".sc");
const r = $(".r");
const o = $(".o");
const ll = $(".ll");

function transformLetters() {
const scroll = window.scrollY;

// console.log({AmountScrolled: scroll});

sc.style.transform = `translate3d(0, ${scroll*1.4}px, 0) rotateY(${-scroll*0.03}deg)`;

r.style.transform = `translate3d(${-scroll*0.45}px, ${scroll*0.95}px, 0) rotate(${-scroll*0.1}deg)`;

o.style.transform = `translate3d(${scroll*0.65}px, ${scroll*1.05}px, 0) rotate(${scroll*0.2}deg)`;

ll.style.transform = `translate3d(0, ${scroll*0.5}px, 0) rotateY(${scroll*0.04}deg)`;
}

window.addEventListener("scroll", transformLetters);

const $ = document.querySelector.bind(document);
const sc = $(".sc");
const r = $(".r");
const o = $(".o");
const ll = $(".ll");

function transformLetters() {
const scroll = window.scrollY;

// console.log({AmountScrolled: scroll});

sc.style.transform = `translate3d(0, ${scroll*1.4}px, 0) rotateY(${-scroll*0.03}deg)`;

r.style.transform = `translate3d(${-scroll*0.45}px, ${scroll*0.95}px, 0) rotate(${-scroll*0.1}deg)`;

o.style.transform = `translate3d(${scroll*0.65}px, ${scroll*1.05}px, 0) rotate(${scroll*0.2}deg)`;

ll.style.transform = `translate3d(0, ${scroll*0.5}px, 0) rotateY(${scroll*0.04}deg)`;
}

window.addEventListener("scroll", transformLetters);

That’s It. Now you have successfully created Text Animate On Scroll Program Using HTML CSS JavaScript. If you have any doubt or question comment down below.

a little task for Experts
08/04/2019

a little task for Experts

07/04/2019

Hope you were doing well.

We are an Indian based Website Design & Development and Mobile Application Development company and offer services at modest rate. We have a dedicated team professional designers and developers and we thrive on the idea that design makes a difference.

Do you want to put your business model and creative ideas in the design of your website? We will match your business goal with our creative ideas.

We offer the following services with affordable prices:
Website development
Website designing
Open source customization/CMS
Ecommerce website development
Mobile Application development
ERP Development
Full SEO package
SMM(Social Media Maketing).
SMO (Facebook, Twitter, LinkedIn, YouTube and MySpace etc.).
Content Writing Services.
Logo Designing
Web Maintenance of Existing Websites
Let us know if you are interested in any of the above services, then we will send you our past work details with detail proposal with price list and best offers.

We are looking forward to hear from you.call at 9718947007

Address

E-27, Jia Sarai, Near IIT Delhi, Hauz Khas
Delhi
110016

Opening Hours

Monday 9am - 7:30am
Tuesday 9am - 7:30am
Wednesday 9am - 7:30am
Thursday 9am - 7:30am
Friday 9am - 7:30am
Saturday 9am - 7:30am

Telephone

9718947007

Alerts

Be the first to know and let us send you an email when SITE Expertise posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Share