IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> web页面滚动动画效果(性能方面) -> 正文阅读

[游戏开发]web页面滚动动画效果(性能方面)

一、页面滚动动画

1、wow.js

2、可视区域插入动效vue3 Composition API

https://www.cnblogs.com/xiaonian8/p/15065727.html

二、元素是否在视窗内的判断

1、第一种方案——传统计算

function isInViewPort(element) {
  const viewWidth = window.innerWidth || document.documentElement.clientWidth;
  const viewHeight = window.innerHeight || document.documentElement.clientHeight;
  const {
    top,
    right,
    bottom,
    left,
  } = element.getBoundingClientRect();
 
  return (
    top >= 0 &&
    left >= 0 &&
    right <= viewWidth &&
    bottom <= viewHeight
  );
}
 
// usage
const.log(document.querySelector('.target')) // true or false 

2、第二种方案——Intersection Observer API 注册回调

使用教程

DEMO

三、回调执行的频率

四、页面内容高度的初始化填充

五、怎么保证页面图片显示不白屏

1、预加载

2、骨架屏方法

六、瀑布流

<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <title>text-shadow-文字描边</title>
    <style>
        * {
            padding: 0;
            margin: 0;
        }
        
        .box {
            position: relative;
            margin: auto;
            transition: all .5s ease-out;
        }
        
        .box div {
            float: left;
            text-align: center;
            transition: all .5s ease-out;
            margin: 10px;
        }
        
        .w1 {
            width: 100px;
            height: 240px;
            background: #f44336;
        }
        
        .w2 {
            width: 100px;
            height: 100px;
            background: #2196f3;
        }
        
        .w3 {
            width: 100px;
            height: 300px;
            background: #ffc107;
        }
        
        .w4 {
            width: 100px;
            height: 400px;
            background: #009688;
        }
        
        .w5 {
            width: 100px;
            height: 70px;
            background: #ff9800;
        }
    </style>
</head>

<body>
    <div class="box">
        <div class="w1"></div>
        <div class="w2"></div>
        <div class="w3"></div>
        <div class="w4"></div>
        <div class="w5"></div>
        <div class="w1"></div>
        <div class="w2"></div>
        <div class="w3"></div>
        <div class="w4"></div>
        <div class="w5"></div>
        <div class="w1"></div>
        <div class="w2"></div>
        <div class="w3"></div>
        <div class="w4"></div>
        <div class="w5"></div>
    </div>
    <script>
        var boxDivWidth = 0, //元素的宽度
            boxArr = [], //存放每列的高度
            columnCount = 0; //共有几列
        boxDiv = Array.prototype.slice.call($('.box div')); //所有子元素的 数组
        //页面加载完成执行
        window.addEventListener('load', function() {
            resort();
        });
        //视口大小改变执行
        window.addEventListener('resize', function() {
            resort();
        });

        function resort() {
            var boxDiv = $('.box div');
            boxDivWidth = getWidth(boxDiv[0]); //获取单个子元素宽度
            columnCount = Math.floor((window.innerWidth - 20) / boxDivWidth); //-20 视口宽度是为了不显示水平滚动条
            $('.box')[0].style.cssText = 'width:' + boxDivWidth * columnCount + 'px;'; //计算最外层父元素 宽度 + margin 实现水平居中
            boxArr = [];
            for (var i = 0; i < columnCount; i++) { //为每列赋初值
                boxArr[i] = 0;
            }
            boxDiv.forEach(function(item) { //转换伪数组 遍历 每个子元素
                var divItemHeight = getHeight(item);
                var minValue = boxArr[0]; //高度最低列 的值
                var minIndex = 0; //高度最低列 的索引
                for (var i = 0; i < columnCount; i++) {
                    if (boxArr[i] < minValue) { //查找 高度最低的列
                        minValue = boxArr[i];
                        minIndex = i;
                    }
                }
                item.style.cssText = 'position:absolute;left:' + minIndex * boxDivWidth + 'px;top:' + minValue + 'px;'; //设置元素 left top 定位
                boxArr[minIndex] += divItemHeight; //对应列加上新增的 高度
            });
        }

        function $(domtext) {
            return document.querySelectorAll(domtext);
        }

        function getWidth(dom) {
            var style = getComputedStyle(dom); //getComputedStyle方法可以获取 外部样式表中的样式
            return parseInt(style.marginLeft.slice(0, -2)) + parseInt(style.marginRight.slice(0, -2)) + dom.offsetWidth;
        }

        function getHeight(dom) {
            var style = getComputedStyle(dom);
            return parseInt(style.marginTop.slice(0, -2)) + parseInt(style.marginBottom.slice(0, -2)) + dom.offsetHeight;
        }
    </script>
</body>

</html>

  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2022-03-08 22:54:07  更:2022-03-08 22:55:48 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/27 17:53:54-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码