How to use position:sticky to perfectly solve the problem of small programs adhering to the ceiling

How to use position:sticky to perfectly solve the problem of small programs adhering to the ceiling

Recently, the client of a project insisted on having two tab menus mounted on the top. I searched for a long time online but couldn’t find a satisfactory solution. Then I saw in a blog that I could use position:sticky to solve this problem. Since I had never seen this attribute before, I searched for it, learned how to use it, wrote a small demo, and found that it is very easy to use and perfectly solves the problem without lag.

insert image description here

insert image description here

html:

<template>
	<view class="">
		<view class="">
			<view class="box">
				
			</view>
			<view class="tabbar t1">
				tabbar
			</view>
			<view class="box">
				
			</view>
			<view class="tabbar t2">
				tabbar
			</view>
			<view class="item" v-for="(item,index) in 20" :key='index' >
				{{item}}
			</view>
		</view>
	</view>
</template>

<script>
</script>

CSS:

<style>
	.box{
		height: 30vh;
		border: 1px solid #007AFF;
	}
	.tabbar{
		background: #fff;
		position: -webkit-sticky;
		position: sticky;
		background: #4CD964;
		height: 50upx;
		
	}
	.t1{
		top: -1upx;
	}
	.t2{
		top: 50upx;
	}
	.item{
		height: 100upx;
		margin-bottom: 20upx;
		background: #007AFF;
	}
</style>

Mainly
position: -webkit-sticky; position: sticky;
Also add a top value, how far from the top the ceiling is

Interested students can go to
MDN – In-depth understanding

This concludes the article on how to use position:sticky to perfectly solve the problem of small programs being stuck to the ceiling. For more relevant position:sticky small programs being stuck to the ceiling content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope that everyone will support 123WORDPRESS.COM in the future!

<<:  Recommend a cool flashing alarm button

>>:  Sample code for modifying the input prompt text style in html

Recommend

HTML+CSS to achieve surround reflection loading effect

This article mainly introduces the implementation...

How to install docker on Linux system and log in to docker container through ssh

Note: I use Centos to install docker Step 1: Inst...

Steps to package and deploy the Vue project to the Apache server

In the development environment, the vue project i...

VMware configuration VMnet8 network method steps

Table of contents 1. Introduction 2. Configuratio...

Summary of vue's webpack -v error solution

Xiaobai learned about Vue, then learned about web...

Detailed explanation of samba folder sharing server configuration under centos

1. Introduction Recently I found that there are m...

How to solve the problem of character set when logging in to Linux

Character set error always exists locale: Cannot ...

Use Xshell to connect to the Linux virtual machine on VMware (graphic steps)

Preface: I recently started to study the construc...

How to manually install MySQL 5.7 on CentOS 7.4

MySQL database is widely used, especially for JAV...

MySQL 5.7.15 version installation and configuration method graphic tutorial

This article shares with you a detailed tutorial ...

Calculation of percentage value when the css position property is absolute

When position is absolute, the percentage of its ...

MySQL installation diagram summary

MySQL 5.5 installation and configuration method g...

Example code for css3 to achieve scroll bar beautification effect

The specific code is as follows: /*Scroll bar wid...