Use CSS and Bootstrap icons to create an up and down jumping indicator arrow animation effect

Use CSS and Bootstrap icons to create an up and down jumping indicator arrow animation effect

Sometimes the page is very long and needs an arrow to tell the user that there is more content below. This can be achieved using pure CSS.

HTML: Add a link that modifies the anchor point so that it slides to a specified position when clicked. Here, a down arrow from the Bootstrap 3.x version is used as the icon.

<a href="#" class="scroll-down">
  <span> <i class="glyphicon glyphicon-chevron-down"></i> </span>
</a>

CSS: Adding animation effects

/*Slide down animation effect*/
@-webkit-keyframes drop {
  0% { top:0px; opacity: 0;}
  30% { top:10px; opacity: 1;}
  100% { top:25px; opacity: 0;}
}
@keyframes drop {
  0% { top:0px; opacity: 0;}
  30% { top:10px; opacity: 1;}
  100% { top:25px; opacity: 0;}
}
/*Apply animation and add button effects*/
.scroll-down {
    border: 2px solid #bbb;
    border-radius: 50%;
    margin: 0 auto;
    height: 50px;
    width: 50px;
    display: block;
    text-align: center;
    z-index: 10;
    -webkit-transition: all 0.125s ease-in-out 0s;
    -moz-transition: all 0.125s ease-in-out 0s;
    -ms-transition: all 0.125s ease-in-out 0s;
    -o-transition: all 0.125s ease-in-out 0s;
    transition: all 0.125s ease-in-out 0s;
}
.scroll-down span {
    position: relative;
    color: #bbb;
    font-size: 24px;
    -webkit-animation-name: drop;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    animation-name: drop;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

Summarize

The above is what I introduced to you about using CSS and Bootstrap icons to create an up and down jumping indicator arrow animation effect. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

<<:  Answers to several high-frequency MySQL interview questions

>>:  HTML Web Page List Tags Learning Tutorial

Recommend

win10 docker-toolsbox tutorial on building a php development environment

Download image docker pull mysql:5.7 docker pull ...

The difference between shtml and html

Shtml and asp are similar. In files named shtml, s...

Solve the problem of inconsistency between mysql time and system time in docker

Recently, when I installed MySQL in Docker, I fou...

Learning about UDP in Linux

Table of contents 1. Introduction to UDP and Linu...

Pure CSS to modify the browser scrollbar style example

Use CSS to modify the browser scroll bar style ::...

How to redraw Button as a circle in XAML

When using XAML layout, sometimes in order to make...

Centos7 installation of MySQL8 tutorial

MySQL 8 new features: My personal opinion on MySQ...

Summary of js execution context and scope

Table of contents Preface text 1. Concepts relate...

Use of Linux ipcs command

1. Command Introduction The ipcs command is used ...

Several ways to switch between Vue Tab and cache pages

Table of contents 1. How to switch 2. Dynamically...

How to remove the underline of a hyperlink using three simple examples

To remove the underline of a hyperlink, you need t...

Detailed explanation of MySQL delayed replication library method

Simply put, delayed replication is to set a fixed...

Modify the jvm encoding problem when Tomcat is running

question: Recently, garbled data appeared when de...

HTML implements a fixed floating semi-transparent search box on mobile

Question. In the mobile shopping mall system, we ...