广州总部电话:020-85564311
广州总部电话:020-85564311

广州网站建设-小程序商城开发-广州小程序开发-企业微信开发公司-网站建设高端品牌-优网科技

20年
互联网应用服务商
请输入搜索关键词
知识库 知识库

优网知识库

探索行业前沿,共享知识宝库

B站首页的 Banner 这么好看,我让你直接用到你的项目!
发布日期:2025-04-15 09:08:03 浏览次数: 865 来源:Ai懒人码农
写在前面

我最开始是用 Angular 去实现了B站的 Banner ,那时候还没有人做这东西,可以看到下面那一长串 Bannet 图片的第一个图是好几年以前的了。然后随着逐步完善,在这几年偶尔也看到有人发过这东西的实现方法。

但我为什么要写这篇文章?「因为我打算用原生 JS 和三大框架都去实现一遍,以满足所有人的需求,让你能直接复制到你的项目」。而且我作为几乎每一期都 copy 的玩家,存货多,也知道最简单通用的 copy 方法。

本文的原生 JS 代码我直接从我已经完善的 Angular 代码基础上提取出来,然后再用 React 与 Vue 各自实现一遍。主要讲讲我大致的方法原理,里面的具体实现细节就不讲了,毕竟讲起来费劲,主要就是一些根据鼠标移动计算图片位置,自己认真读起来不会很难。

「代码与相关静态资源已提交至 gitee ,需要的直接去看完整代码即可。」

https://gitee.com/CrimsonHu/bilibili-banner

这是我的个人网站,我在我的网站上面用它很久了~~~

https://intelyes.club

B站是怎么实现 Banner 的

我们打开控制台,首先找到它的 DOM 结构,可以看到 Banner 里面有一个个 class 为 layer 的 div:

点开 div,会看到一个 img 与控制这个 img 位置与大小的样式:

Banner 的本质就是一层层的图片,按照特定的宽度、高度、位置( translate 的 X 与 Y 属性)、以及角度、缩放、透明度这些来进行排列的。

在 Banner 上移动鼠标,我们会发现 「transform 属性的各项值会随着鼠标的移动而更新」

所以实现思路就有了:「把这些图片按照指定的样式进行排列,然后做一个鼠标移动的监听事件即可」

那么如何知道鼠标移动了一定的距离,每个图片各自的移动量是多少呢?

这个也简单。因为它的移动量基本都是线性的。目前我只看到有两期是在线性移动的基础上加了点额外的效果,这个在这里就把它忽略。把它的线性动画的移动量拿过来后已经显示的很不错了。

于是我发现了一个很好用的方法:

「以某一张图片为基准,以它的移动量为一个基准单位,去看其它每个图片移动了多少。」

例如,我以图片 A 移动了 5px 为基准,那么我就看图片 A 移动了 5px 的时候,其它的各个图片分别移动了多少。所以,通过这个取基准的方法,我们可以得出,「根据鼠标的移动,带动图片 A 的位置更新,从而得出其它各个图片的位置的更新值」

使用原生代码实现

1. 资源获取

现在理清了原理,那么我们就先将每张图片的静态资源获取下来,这一步就省略不写了。

2. 定义基准移动量

现在我们以第一张图片为基准,去定义移动量:


    type'image'
    file'477fb7a2f5e2cc1b2aa00c679c8ab168b47ff1b9.png@1c.webp'
    width1728
    height162
    x0,  // 原始 translateX 值
    y0,  // 原始 translateY 值
    r0,  // 原始 rotate 值
    s1,  // 原始 scale 值 
    o1,  // 原始 opacity 值 
    newX-1.17573// 更新后的 translateX 值
    newY0,        // 更新后的 translateY 值
    newRotate0,   // 更新后的 rotate 值
    bench-1.17573
},

其实没更新的值可以省略不写,比如这段定义里面的 newOpacity 我省略了,而且 newY 和 newRotate 也可以省略,因为后续代码我会处理省略的字段不进行计算更新。

这段定义代码需要注意的地方就是 x、 newX、 bench 这三个,这是我们定义的一个基准移动量。

「鼠标在 Banner 上移动,这个图片的 translateX 值从 0 更新到 -1.17573,以此为基准,基准字段记为 bench。」

于是,需要你花亿点点时间,去看第一个图片的 translateX 在 -1.17573 这个值的时候,其它的图片的位置值各自是多少:

因为每次重新打开页面重新打开控制台时,这种细微操作的移动,更新的值都不会完全一致,图中的值会与我记录的稍微不一致,所以在完成所有图片的数据采集之前不要更改窗口尺寸与开关控制台。

[
    { type'image'file'477fb7a2f5e2cc1b2aa00c679c8ab168b47ff1b9.png@1c.webp'width1728height162x0y0r0s1o1newX-1.17573newY0newRotate0bench-1.17573 },
    { type'image'file'dd4aa5af4898a15dde074fe6b833bdfbc045dd47.png@1c.webp'width1632height153x-42.5y0r0s1o1newX-46.2014newY1.48055newRotate-2.17727bench-1.17573 },
    { type'image'file'ae64c474ba2748b4fea1a1433b9b373598d3e686.png@1c.webp'width1632height153x0y0r0s1o1newX0newY0newRotate0bench-1.17573 },
    { type'image'file'd41b0292d9d1b0fce37a35f6efacac579093cdb3.png@1c.webp'width1728height162x-63y-18r0s1o1newX-68.8786newY-18newRotate-2.17727bench-1.17573 },
    { type'image'file'a12cbab877db2b6d3b96ec012735cfe3998de399.png@1c.webp'width1632height153x0y0r0s1o1newX3.70136newY0newRotate0bench-1.17573 },
    { type'image'file'6f27fe80f495e83546921c2c58b2107c2ee89706.png@1c.webp'width1824height171x9.5y0r0s1o1newX-0.842045newY-2.06841newRotate0newScale0.978227bench-1.17573 },
    { type'image'file'ac580ac636595e27b5d5c8b1f9d802751823f02f.png@1c.webp'width1632height153x0y0r0s1o1newX14.8055newY0newRotate0bench-1.17573 },
    { type'image'file'987a407da2e02a12be549ad7f011dc11f73216e9.png@1c.webp'width1632height153x0y8.5r0s1o1newX5.55205newY7.38959newRotate0bench-1.17573 },
    { type'image'file'843ee84b16bab6274b98b317b3adaf1351b4be76.png@1c.webp'width1632height153x8.5y0r0s1o1newX-2.60409newY0newRotate0bench-1.17573 },
    { type'image'file'a5607001ac06b4780106e2a10aa835657e553f07.png@1c.webp'width1632height153x8.5y0r0s1o1newX15.9027newY-12.9548newRotate0bench-1.17573 },
    { type'image'file'b14cad3c76e957705810c26f4c6acc236f280721.png@1c.webp'width1632height153x17y0r0s1o1newX11.448newY0newRotate0bench-1.17573 },
    { type'image'file'f569be6834a5968c038bcc0fb0403f8f77e24c18.png@1c.webp'width1632height153x8.5y0r0s1o1newX1.09727newY0newRotate0bench-1.17573 },
    { type'image'file'eb98a42561de7d45f8856407c4531d2724ac6fc6.png@1c.webp'width1344height126x21y21r0s1o1newX-9.48182newY17.9518newRotate2.17727newScale1.13064bench-1.17573 },
    { type'image'file'480a5c02dbcd3afd5f790cf621efbd1b2d39efcb.png@1c.webp'width1632height153x0y0r0s1o1newX-18.5068newY0newRotate0bench-1.17573 },
    { type'image'file'cc1405d4d805baf9c459f67c03f095f70ec864c6.png@1c.webp'width1632height153x0y17r0s1o1newX-5.55205newY18.8507newRotate0bench-1.17573 },
    { type'image'file'1696ffeacb26bcce7ad50037952620ee43614a4a.png@1c.webp'width1632height153x0y0r0s1o1newX-7.40273newY-2.96109newRotate0newScale1.08709bench-1.17573 },
    { type'image'file'b0747b7f64e0e07e379a4bd416a0891b3e52c7d9.png@1c.webp'width1651.2height154.8x34.4y0r0s1o1newX11.9305newY0newRotate0bench-1.17573 },
    { type'image'file'ec9f99bf71be9408a359d7cd48dfb47e48ebce2c.png@1c.webp'width1632height153x0y0r0s1o1newX-9.25341newY6.29232newRotate-8.70909newScale1.13064bench-1.17573 },
    { type'image'file'c4cef2b063a853521c7f413d8e7782ff653e4126.png@1c.webp'width1632height153x17y0r0s1o1newX-12.6109newY0newRotate0bench-1.17573 },
    { type'image'file'567e0221b3bd89e34d85c604549d915c95ca17d1.png@1c.webp'width1920height180x30y0r0s1o1newX73.5455newY0newRotate0bench-1.17573 },
    { type'image'file'23c05e4d9e0ffbc16671e14c406fbe785b06ff9f.png@1c.webp'width1632height153x15.3y17r0s1o1newX-18.0123newY17newRotate0bench-1.17573 },
    { type'image'file'fbfeb5de7e41fd1e888fca7ac76cbf2f8a42f3d3.png@1c.webp'width1920height180x0y0r0s1o1newX-43.5455newY0newRotate0bench-1.17573 },
]

3. 展示静态效果

有了这些数据后,先来把每个图层的图片按照这些位置数据显示出来,用原生 JS 做一个静态展示:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .bili-banner {
            position: relative;
            width100%;
            height100%;
            background-color#f9f9f9;
            display: flex;
            justify-content: center;
            background-repeat: no-repeat;
            background-position: center 0;
            background-size: cover;
            filterbrightness(var(--img-filter-brightness));
        }

        .animated-banner {
            position: absolute;
            width100%;
            height100%;
            top0;
            left0;
            overflow: hidden;
        }

        .layer {
            position: absolute;
            height100%;
            width100%;
            left0;
            top0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo {
            position: absolute;
            width220px;
            height105px;
            left0;
            top0;
            transformscale(0.4translate(-60%, -60%);
        }

        .logo>img {
            width100%;
            height100%;
        }

        .banner-container {
            position: relative;
            width800px;
            height150px;
        }
    
</style>
</head>

<body>
    <div class="banner-container" id="winter-5"></div>
</body>

<script>
    const baseSrc = './assets/winter-5/';

    const imgData = [...];

    const container = document.getElementById('winter-5');

    const biliBanner = document.createElement('div');
    biliBanner.className = 'bili-banner';

    const animatedBanner = document.createElement('div');
    animatedBanner.className = 'animated-banner';

    for (let i = 0; i < imgData.length; i++) {
        const layer = document.createElement('div');
        layer.className = 'layer';
        const img = document.createElement('img');
        img.src = baseSrc + imgData[i].file;
        img.style.width = imgData[i].width + 'px';
        img.style.height = imgData[i].height + 'px';
        img.style.transform = '' +
            'translate(' +
            imgData[i].x + 'px, ' +
            imgData[i].y + 'px' +
            ')' + ' ' +
            'rotate(' + imgData[i].r + 'deg)' + ' ' +
            'scale(' + imgData[i].s + ')';
        img.style.opacity = imgData[i].o;
        layer.appendChild(img);
        animatedBanner.appendChild(layer);
    }

    biliBanner.appendChild(animatedBanner);
    container.appendChild(biliBanner);

</script>

</html>

上述代码的效果如图所示:

4. 实现完整功能

现在能够看到每张图片能够按照正确的位置显示出来了,接下来的主要工作就是「添加鼠标移动事件,去计算每个图片的移动量」。具体就不详细讲了。

可以看到,已经基本达到了B站首页 Banner 的效果。

「使用三大框架各自实现的代码直接在 gitee 上看,文中就不贴出来了。」

https://gitee.com/CrimsonHu/bilibili-banner

下面是原生 JS 实现的完整代码,贴在这里供大家学习参考。「这里我使用了面向对象的方式将其进行封装,方便初始化多个实例与销毁」。同时我也建议前端人应该同时掌握面向对象与函数式,「在合适的地方用合适的方法」,而不是一味地吹捧函数式编程,去拒绝面向对象的思维。

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .bili-banner {
            position: relative;
            width100%;
            height100%;
            background-color#f9f9f9;
            display: flex;
            justify-content: center;
            background-repeat: no-repeat;
            background-position: center 0;
            background-size: cover;
            filterbrightness(var(--img-filter-brightness));
        }

        .animated-banner {
            position: absolute;
            width100%;
            height100%;
            top0;
            left0;
            overflow: hidden;
        }

        .layer {
            position: absolute;
            height100%;
            width100%;
            left0;
            top0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo {
            position: absolute;
            width220px;
            height105px;
            left0;
            top0;
            transformscale(0.4translate(-60%, -60%);
        }

        .logo>img {
            width100%;
            height100%;
        }

        .banner-container {
            position: relative;
            width800px;
            height150px;
        }
    
</style>
</head>

<body>
    <div class="banner-container" id="winter-5"></div>
</body>

<script>

    class ResizeObserverWrap {
        observer;
        dom;
        constructor(dom, callback) {
            this.dom = dom;
            this.observer = new ResizeObserver((entries) => {
                if (!Array.isArray(entries) || !entries.length) {
                    return;
                }
                for (let entry of entries) {
                    callback(entry.target);
                }
            });
            this.observer.observe(this.dom);
        }
        unmount() {
            this.observer.unobserve(this.dom);
        }
    }

    class BilibiliBannerBase {

        baseSrc = './assets/winter-5/';

        imgDomList = [];
        imgData = [];
        imgNewData = [];

        resizeObserver;
        container;
        containerWidth = 0;

        // 声明自定义参数
        marginLeft = 0;
        moveRate = 300;
        maxMove = null;
        maxLeftPosition = null;
        maxRightPosition = null;

        // 声明状态信息
        isReseting = false;
        isInResetingEnter = false;
        startPoint = { x0y0 }
        transition = 0.75;
        moveX = 0;

        // 声明loop与render方法更新界面
        isDestroyed = false;
        frameTime = 0;
        fps = 60;

        // 监听事件
        mouseenter = (e) => {
            if (this.isReseting) {
                this.isInResetingEnter = true;
            } else {
                this.bilibiliStart(e.clientX, e.clientY);
            }
        }
        mousemove = (e) => {
            if (!this.isReseting) {
                if (this.isInResetingEnter) {
                    this.bilibiliStart(e.clientX, e.clientY);
                    this.isInResetingEnter = false;
                } else {
                    this.bilibiliMove(e.clientX, e.clientY);
                }
            }
        }
        mouseleave = (e) => {
            this.bilibiliEnd();
            this.reset();
        }

        constructor(param = {
            container,
            imgData,
            marginLeft,
            moveRate,
            maxMove: { left, right },
            maxLeftPosition: { index, cut },
            maxRightPosition: { index, cut },
        }) {
            window.requestAnimationFrameFunc = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame;
            this.container = param.container;
            this.imgData = param.imgData;
            this.init();
        }

        init() {
            const biliBanner = document.createElement('div');
            biliBanner.className = 'bili-banner';
            const animatedBanner = document.createElement('div');
            animatedBanner.className = 'animated-banner';
            for (let i = 0; i < this.imgData.length; i++) {
                const layer = document.createElement('div');
                layer.className = 'layer';
                const img = document.createElement('img');
                img.src = this.baseSrc + this.imgData[i].file;
                img.style.width = this.imgData[i].width + 'px';
                img.style.height = this.imgData[i].height + 'px';
                img.style.transform = '' +
                    'translate(' +
                    this.imgData[i].x + 'px, ' +
                    this.imgData[i].y + 'px' +
                    ')' + ' ' +
                    'rotate(' + this.imgData[i].r + 'deg)' + ' ' +
                    'scale(' + this.imgData[i].s + ')';
                img.style.opacity = this.imgData[i].o;
                img.style.filter = this.imgData[i].filter == undefined ? 'none' : this.imgData[i].filter;
                this.imgDomList.push(img);
                layer.appendChild(img);
                animatedBanner.appendChild(layer);
            }
            biliBanner.appendChild(animatedBanner);
            this.container.appendChild(biliBanner);
            this.resizeObserver = new ResizeObserverWrap(this.container, (e) => {
                this.containerWidth = e.clientWidth;
            });
            this.imgData.forEach((each, i) => {
                each.x += this.marginLeft;
                each.newX += this.marginLeft;
                this.imgNewData.push({
                    currentX: each.x,
                    currentY: each.y == undefined ? 0 : each.y,
                    currentRotate: each.r == undefined ? 0 : each.r,
                    currentScale: each.s == undefined ? 0 : each.s,
                    currentOpacity: each.o == undefined ? 1 : each.o,
                });
            });
            // 添加鼠标移动事件
            this.container.addEventListener('mouseenter'this.mouseenter);
            this.container.addEventListener('mousemove'this.mousemove);
            this.container.addEventListener('mouseleave'this.mouseleave);
            this.loop(0);
        }

        destroy() {
            this.isDestroyed = true;
            this.resizeObserver.unmount();
            this.container.removeEventListener('mouseenter'this.mouseenter);
            this.container.removeEventListener('mousemove'this.mousemove);
            this.container.removeEventListener('mouseleave'this.mouseleave);
            this.container.innerHTML = '';
        }

        render() {
            this.imgDomList.forEach((img, i) => {
                img.style.transform = '' +
                    'translate(' +
                    this.imgNewData[i].currentX + 'px, ' +
                    this.imgNewData[i].currentY + 'px' +
                    ')' + ' ' +
                    'rotate(' + this.imgNewData[i].currentRotate + 'deg)' + ' ' +
                    'scale(' + this.imgNewData[i].currentScale + ')';
                img.style.opacity = this.imgNewData[i].currentOpacity;
                img.style.filter = this.imgNewData[i].filter == undefined ? 'none' : this.imgNewData[i].filter;
                img.style.transition = this.transition + 's';
            })
        }

        loop(e) {
            if (e - this.frameTime >= 1000 / this.fps) {
                this.frameTime = e;
                this.render();
            }
            window.requestAnimationFrameFunc((e1) => {
                if (!this.isDestroyed) {
                    this.loop(e1);
                }
            });
        }

        bilibiliStart(x, y) {
            this.startPoint.x = x;
            this.startPoint.y = y;
            this.transition = 0;
        }

        bilibiliMove(x, y) {
            let moveX = (x - this.startPoint.x) / this.moveRate;
            this.startPoint.x = x;
            this.moveX += moveX;
            if (this.maxMove) {
                let v = this.moveX * this.moveRate;
                if (moveX < 0 && v * -1 > this.maxMove.left) {
                    return;
                } elseif (moveX > 0 && v > this.maxMove.right) {
                    return;
                }
            }
            if (this.moveX > 0) {
                if (Math.abs(this.moveX) > this.getLeftWidth()) {
                    this.moveX -= moveX;
                    return;
                }
            } else {
                if (Math.abs(this.moveX) > this.getRightWidth()) {
                    this.moveX -= moveX;
                    return;
                }
            }
            for (let i = 0; i < this.imgData.length; i++) {
                this.moveFunction(i);
            }
        }

        bilibiliEnd() {
            this.startPoint.x = 0;
            this.startPoint.y = 0;
        }

        getLeftWidth() {
            let leftWidth;
            if (this.maxLeftPosition) {
                let i = this.maxLeftPosition.index;
                let r = (this.imgData[i].newX - this.imgData[i].x) / this.imgData[i].bench;
                leftWidth = (this.imgData[i].width - this.containerWidth) / 2 - this.imgData[i].x;
                leftWidth = leftWidth - this.maxLeftPosition.cut;
                leftWidth = leftWidth / r;
                console.log(leftWidth)
            } else {
                leftWidth = this.containerWidth / 2 - this.marginLeft;
            }
            return leftWidth;
        }

        getRightWidth() {
            let rightWidth;
            if (this.maxRightPosition) {
                let i = this.maxRightPosition.index;
                let r = (this.imgData[i].newX - this.imgData[i].x) / this.imgData[i].bench;
                rightWidth = (this.imgData[i].width - this.containerWidth) / 2 + this.imgData[i].x;
                rightWidth = rightWidth - this.maxRightPosition.cut;
                rightWidth = rightWidth / r;
            } else {
                rightWidth = this.containerWidth / 2 + this.marginLeft;
            }
            return rightWidth;
        }

        moveFunction(i) {
            let bench = this.imgData[i].bench;
            // 移动量 - X
            let x = this.imgData[i].x;
            let newX = this.imgData[i].newX;
            if (x != null && newX != null && x != newX) {
                let x1 = (newX - x) / bench;
                this.imgNewData[i].currentX = x1 * this.moveX + x;
            }
            // 移动量 - Y
            let y = this.imgData[i].y;
            let newY = this.imgData[i].newY;
            if (y != null && newY != null && y != newY) {
                let y1 = (newY - y) / bench;
                this.imgNewData[i].currentY = y1 * this.moveX + y;
            }
            // 移动量 - Rotate
            let r = this.imgData[i].r;
            let newRotate = this.imgData[i].newRotate;
            if (r != null && newRotate != null && r != newRotate) {
                let r1 = (newRotate - r) / bench;
                this.imgNewData[i].currentRotate = r1 * this.moveX + r;
            }
            // 移动量 - Scale
            let s = this.imgData[i].s;
            let newScale = this.imgData[i].newScale;
            if (s != null && newScale != null && s != newScale) {
                let s1 = (newScale - s) / bench;
                this.imgNewData[i].currentScale = s1 * this.moveX + s;
            }
            // 移动量 - Opacity
            let o = this.imgData[i].o;
            let newOpacity = this.imgData[i].newOpacity;
            if (o != null && newOpacity != null && o != newOpacity) {
                let o1 = (newOpacity - o) / bench;
                this.imgNewData[i].currentOpacity = o1 * this.moveX + o;
            }
            if (this.imgNewData[i].currentOpacity < 0) { // 透明度检测,在0~1范围内
                this.imgNewData[i].currentOpacity = 0;
            } elseif (this.imgNewData[i].currentOpacity > 1) {
                this.imgNewData[i].currentOpacity = 1;
            }
        }

        reset() {
            this.transition = 0.75;
            this.moveX = 0;
            for (let i = 0; i < this.imgData.length; i++) {
                let data = this.imgData[i];
                this.imgNewData[i].currentX = data.x;
                this.imgNewData[i].currentY = data.y == undefined ? 0 : data.y;
                this.imgNewData[i].currentRotate = data.r == undefined ? 0 : data.r;
                this.imgNewData[i].currentScale = data.s == undefined ? 0 : data.s;
                this.imgNewData[i].currentOpacity = data.o == undefined ? 0 : data.o;
            }
            this.isReseting = true;
            setTimeout(() => {
                this.isReseting = false;
            }, 750);
        }

    }

    let banner = new BilibiliBannerBase({
        containerdocument.getElementById('winter-5'),
        imgData: [
            { type'image'file'477fb7a2f5e2cc1b2aa00c679c8ab168b47ff1b9.png@1c.webp'width1728height162x0y0r0s1o1newX-1.17573newY0newRotate0bench-1.17573 },
            { type'image'file'dd4aa5af4898a15dde074fe6b833bdfbc045dd47.png@1c.webp'width1632height153x-42.5y0r0s1o1newX-46.2014newY1.48055newRotate-2.17727bench-1.17573 },
            { type'image'file'ae64c474ba2748b4fea1a1433b9b373598d3e686.png@1c.webp'width1632height153x0y0r0s1o1newX0newY0newRotate0bench-1.17573 },
            { type'image'file'd41b0292d9d1b0fce37a35f6efacac579093cdb3.png@1c.webp'width1728height162x-63y-18r0s1o1newX-68.8786newY-18newRotate-2.17727bench-1.17573 },
            { type'image'file'a12cbab877db2b6d3b96ec012735cfe3998de399.png@1c.webp'width1632height153x0y0r0s1o1newX3.70136newY0newRotate0bench-1.17573 },
            { type'image'file'6f27fe80f495e83546921c2c58b2107c2ee89706.png@1c.webp'width1824height171x9.5y0r0s1o1newX-0.842045newY-2.06841newRotate0newScale0.978227bench-1.17573 },
            { type'image'file'ac580ac636595e27b5d5c8b1f9d802751823f02f.png@1c.webp'width1632height153x0y0r0s1o1newX14.8055newY0newRotate0bench-1.17573 },
            { type'image'file'987a407da2e02a12be549ad7f011dc11f73216e9.png@1c.webp'width1632height153x0y8.5r0s1o1newX5.55205newY7.38959newRotate0bench-1.17573 },
            { type'image'file'843ee84b16bab6274b98b317b3adaf1351b4be76.png@1c.webp'width1632height153x8.5y0r0s1o1newX-2.60409newY0newRotate0bench-1.17573 },
            { type'image'file'a5607001ac06b4780106e2a10aa835657e553f07.png@1c.webp'width1632height153x8.5y0r0s1o1newX15.9027newY-12.9548newRotate0bench-1.17573 },
            { type'image'file'b14cad3c76e957705810c26f4c6acc236f280721.png@1c.webp'width1632height153x17y0r0s1o1newX11.448newY0newRotate0bench-1.17573 },
            { type'image'file'f569be6834a5968c038bcc0fb0403f8f77e24c18.png@1c.webp'width1632height153x8.5y0r0s1o1newX1.09727newY0newRotate0bench-1.17573 },
            { type'image'file'eb98a42561de7d45f8856407c4531d2724ac6fc6.png@1c.webp'width1344height126x21y21r0s1o1newX-9.48182newY17.9518newRotate2.17727newScale1.13064bench-1.17573 },
            { type'image'file'480a5c02dbcd3afd5f790cf621efbd1b2d39efcb.png@1c.webp'width1632height153x0y0r0s1o1newX-18.5068newY0newRotate0bench-1.17573 },
            { type'image'file'cc1405d4d805baf9c459f67c03f095f70ec864c6.png@1c.webp'width1632height153x0y17r0s1o1newX-5.55205newY18.8507newRotate0bench-1.17573 },
            { type'image'file'1696ffeacb26bcce7ad50037952620ee43614a4a.png@1c.webp'width1632height153x0y0r0s1o1newX-7.40273newY-2.96109newRotate0newScale1.08709bench-1.17573 },
            { type'image'file'b0747b7f64e0e07e379a4bd416a0891b3e52c7d9.png@1c.webp'width1651.2height154.8x34.4y0r0s1o1newX11.9305newY0newRotate0bench-1.17573 },
            { type'image'file'ec9f99bf71be9408a359d7cd48dfb47e48ebce2c.png@1c.webp'width1632height153x0y0r0s1o1newX-9.25341newY6.29232newRotate-8.70909newScale1.13064bench-1.17573 },
            { type'image'file'c4cef2b063a853521c7f413d8e7782ff653e4126.png@1c.webp'width1632height153x17y0r0s1o1newX-12.6109newY0newRotate0bench-1.17573 },
            { type'image'file'567e0221b3bd89e34d85c604549d915c95ca17d1.png@1c.webp'width1920height180x30y0r0s1o1newX73.5455newY0newRotate0bench-1.17573 },
            { type'image'file'23c05e4d9e0ffbc16671e14c406fbe785b06ff9f.png@1c.webp'width1632height153x15.3y17r0s1o1newX-18.0123newY17newRotate0bench-1.17573 },
            { type'image'file'fbfeb5de7e41fd1e888fca7ac76cbf2f8a42f3d3.png@1c.webp'width1920height180x0y0r0s1o1newX-43.5455newY0newRotate0bench-1.17573 },
        ],
        maxMove: { left2000right2000 },
    });
</script>

</html>

优网科技,优秀企业首选的互联网供应服务商

优网科技秉承"专业团队、品质服务" 的经营理念,诚信务实的服务了近万家客户,成为众多世界500强、集团和上市公司的长期合作伙伴!

优网科技成立于2001年,擅长网站建设、网站与各类业务系统深度整合,致力于提供完善的企业互联网解决方案。优网科技提供PC端网站建设(品牌展示型、官方门户型、营销商务型、电子商务型、信息门户型、DIY体验、720全景展厅及3D虚拟仿真)、移动端应用(手机站APP开发)、微信定制开发(微信官网、微信商城、企业微信)、微信小程序定制开发等一系列互联网应用服务。


我要投稿

姓名

文章链接

提交即表示你已阅读并同意《个人信息保护声明》

专属顾问 专属顾问
扫码咨询您的优网专属顾问!
专属顾问
马上咨询
扫一扫马上咨询
扫一扫马上咨询

扫一扫马上咨询