CSS Fixed

CSS Fixed

在网页设计中,CSS的position属性是非常重要的,其中position: fixed是一种常用的定位方式。当一个元素被设置为position: fixed时,它会相对于浏览器窗口固定在某个位置,不随页面滚动而移动。这种定位方式常用于创建导航栏、悬浮广告等元素。

基本语法

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Fixed Example</title>
<style>
    .fixed {
        position: fixed;
        top: 0;
        left: 0;
        background-color: #333;
        color: #fff;
        padding: 10px;
        width: 100%;
    }
</style>
</head>
<body>
<div class="fixed">This is a fixed element</div>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non diam nec justo ultricies ultricies. Nullam nec justo nec nunc ultricies ultricies. Donec nec justo nec nunc ultricies ultricies.</p>
</body>
</html>

Output:

CSS Fixed

在上面的示例中,我们创建了一个固定在页面顶部的元素,当页面滚动时,该元素会保持在原位不动。

固定在底部

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Fixed Bottom Example</title>
<style>
    .fixed-bottom {
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: #333;
        color: #fff;
        padding: 10px;
        width: 100%;
    }
</style>
</head>
<body>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non diam nec justo ultricies ultricies. Nullam nec justo nec nunc ultricies ultricies. Donec nec justo nec nunc ultricies ultricies.</p>
<div class="fixed-bottom">This is a fixed element at the bottom</div>
</body>
</html>

Output:

CSS Fixed

在这个示例中,我们创建了一个固定在页面底部的元素,同样会保持在原位不动。

固定在右下角

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Fixed Bottom Right Example</title>
<style>
    .fixed-bottom-right {
        position: fixed;
        bottom: 0;
        right: 0;
        background-color: #333;
        color: #fff;
        padding: 10px;
    }
</style>
</head>
<body>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non diam nec justo ultricies ultricies. Nullam nec justo nec nunc ultricies ultricies. Donec nec justo nec nunc ultricies ultricies.</p>
<div class="fixed-bottom-right">This is a fixed element at the bottom right corner</div>
</body>
</html>

Output:

CSS Fixed

这个示例中,我们创建了一个固定在页面右下角的元素,同样会保持在原位不动。

固定在左侧并随页面滚动

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Fixed Left Example</title>
<style>
    .fixed-left {
        position: fixed;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        background-color: #333;
        color: #fff;
        padding: 10px;
    }
</style>
</head>
<body>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non diam nec justo ultricies ultricies. Nullam nec justo nec nunc ultricies ultricies. Donec nec justo nec nunc ultricies ultricies.</p>
<div class="fixed-left">This is a fixed element on the left side</div>
</body>
</html>

Output:

CSS Fixed

在这个示例中,我们创建了一个固定在页面左侧的元素,但是随着页面滚动而移动。

固定在右侧并随页面滚动

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Fixed Right Example</title>
<style>
    .fixed-right {
        position: fixed;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        background-color: #333;
        color: #fff;
        padding: 10px;
    }
</style>
</head>
<body>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non diam nec justo ultricies ultricies. Nullam nec justo nec nunc ultricies ultricies. Donec nec justo nec nunc ultricies ultricies.</p>
<div class="fixed-right">This is a fixed element on the right side</div>
</body>
</html>

Output:

CSS Fixed

这个示例中,我们创建了一个固定在页面右侧的元素,同样会随着页面滚动而移动。

固定在指定位置

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Fixed Custom Position Example</title>
<style>
    .fixed-custom {
        position: fixed;
        top: 100px;
        left: 50px;
        background-color: #333;
        color: #fff;
        padding: 10px;
    }
</style>
</head>
<body>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non diam nec justo ultricies ultricies. Nullam nec justo nec nunc ultricies ultricies. Donec nec justo nec nunc ultricies ultricies.</p>
<div class="fixed-custom">This is a fixed element at a custom position</div>
</body>
</html>

Output:

CSS Fixed

在这个示例中,我们创建了一个固定在页面指定位置的元素。

固定在指定位置并随页面滚动

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Fixed Custom Position Scroll Example</title>
<style>
    .fixed-custom-scroll {
        position: fixed;
        top: 100px;
        left: 50px;
        background-color: #333;
        color: #fff;
        padding: 10px;
    }
</style>
</head>
<body>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non diam nec justo ultricies ultricies. Nullam nec justo nec nunc ultricies ultricies. Donec nec justo nec nunc ultricies ultricies.</p>
<div class="fixed-custom-scroll">This is a fixed element at a custom position that scrolls with the page</div>
</body>
</html>

Output:

CSS Fixed

在这个示例中,我们创建了一个固定在页面指定位置的元素,但是随着页面滚动而移动。

固定在指定位置并随页面滚动到一定位置后停止

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Fixed Custom Position Scroll Stop Example</title>
<style>
    .fixed-custom-scroll-stop {
        position: fixed;
        top: 100px;
        left: 50px;
        background-color: #333;
        color: #fff;
        padding: 10px;
    }
</style>
<script>
    window.addEventListener('scroll', function() {
        var element = document.querySelector('.fixed-custom-scroll-stop');
        var scrollPosition = window.scrollY;
        if (scrollPosition > 200) {
            element.style.position = 'absolute';
            element.style.top = '200px';
        } else {
            element.style.position = 'fixed';
            element.style.top = '100px';
        }
    });
</script>
</head>
<body>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non diam nec justo ultricies ultricies. Nullam nec justo nec nunc ultricies ultricies. Donec nec justo nec nunc ultricies ultricies.</p>
<div class="fixed-custom-scroll-stop">This is a fixed element at a custom position that stops scrolling after 200px</div>
</body>
</html>

Output:

CSS Fixed

在这个示例中,我们创建了一个固定在页面指定位置的元素,当页面滚动超过200px时,元素会停止固定在页面上。

固定在指定位置并在一定高度后淡出

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Fixed Custom Position Fade Out Example</title>
<style>
    .fixed-custom-fade-out {
        position: fixed;
        top: 100px;
        left: 50px;
        background-color: #333;
        color: #fff;
        padding: 10px;
        transition: opacity 0.5s;
    }
</style>
<script>
    window.addEventListener('scroll', function() {
        var element = document.querySelector('.fixed-custom-fade-out');
        var scrollPosition = window.scrollY;
        if (scrollPosition > 200) {
            element.style.opacity = '0';
        } else {
            element.style.opacity = '1';
        }
    });
</script>
</head>
<body>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non diam nec justo ultricies ultricies. Nullam nec justo nec nunc ultricies ultricies. Donec nec justo nec nunc ultricies ultricies.</p>
<div class="fixed-custom-fade-out">This is a fixed element at a custom position that fades out after 200px</div>
</body>
</html>

Output:

CSS Fixed

在这个示例中,我们创建了一个固定在页面指定位置的元素,当页面滚动超过200px时,元素会逐渐淡出。

以上是关于CSS中position: fixed的一些示例,通过这些示例可以更好地理解和运用固定定位在网页设计中的应用。

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程