利用docx-preview在线阅览word

html 复制代码
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title></title>
    <style>
        body {
            margin: 0;
            padding: 0;
        }

        article > .docx_toc.docx-num-35-undefined {
            margin-bottom: 1em;
        }

        .docx_toc1 a, .docx_toc2 a {
            display: inline-block;
            width: 100%;
            overflow: hidden;
            color: #333;
            position: relative;
        }

        .docx_toc1 a > span, .docx_toc2 a > span {
            color: #333;
            text-decoration: none;
        }

        .docx_toc1 a > span:last-child, .docx_toc2 a > span:last-child {
            float: right;
            color: #333;
            background-color: #fff;
            text-indent: 1rem;
            z-index: 10;
            position: relative;
        }

        .docx_toc1 a > span:nth-last-child(2), .docx_toc2 a > span:nth-last-child(2) {
            position: absolute;
            display: inline-block;
            top: 50%;
            width: 95%;
            height: 0 !important;
            min-height: 1px;
            vertical-align: middle;
            border-bottom-style: dotted;
        }

        .docx_toc1 span.docx_afa {
            text-decoration: none;
        }

        .docx_toc1 a:hover span.docx_afa {
            text-decoration: underline;
            color: #000;
        }

        .docx_toc1 a:hover span.docx_afa:first-child {
            text-decoration: underline;
            color: #000;
        }

        .docx_toc1 a:hover span:last-child {
            text-decoration: underline;
            color: #000;
        }


        .docx_toc1 a:hover span > span {
            text-decoration: none !important;
        }

        .docx_toc2 a:hover span:last-child {
            text-decoration: underline;
            color: #000;
        }

        .docx_toc2 a:hover span.docx_afa {
            text-decoration: underline;
            color: #000;
        }

        .docx_toc2 a:hover span.docx_afa:first-child {
            text-decoration: underline;
            color: #000;
        }

        .docx_toc2 a:hover span > span {
            text-decoration: none !important;
        }
        article img{
            cursor: pointer;
            transition: .2s ease-in-out;
        }

        article img:hover {
            transform: scale(1.1);
            box-shadow: rgba(0, 0, 0, 0.1) 0 0 27px 10px;
            z-index: 10;
        }
    </style>
</head>

<!--lib uses jszip-->
<script src="https://unpkg.com/jszip/dist/jszip.min.js"></script>
<!-- docx-preview 可以npm install 下载,也可以使用官网cdn地址,自行百度-->
<script src="./js/docx-preview.min.js"></script>
<!-- <script src="https://volodymyrbaydalka.github.io/docxjs//dist/docx-preview.js"></script> -->

<body>
<div id="wordViewer"></div>
<script type="module">
    import {utils} from "./js/utils.js";

    let url = utils.getQueryVariable("url");
    url = url ? url : 'index.docx'
    wordView(url);
    console.log(document.getElementsByTagName("title"));
    document.getElementsByTagName("title")[0].text = url;

    function wordView(url) {
        let vm = this;
        let xhr = new XMLHttpRequest();
        xhr.open("get", url, true);
        xhr.responseType = "arraybuffer";
        xhr.onload = function () {
            if (xhr.status === 200) {
                docx.renderAsync(xhr.response, document.getElementById("wordViewer"))
                    .then(x => {console.log("docx: finished");mybind();});
            }
        };
        xhr.send();
    }

    function mybind(){
        var element = document.querySelectorAll("article img");
        console.log(element)
        for (let elementElement of element) {
            console.log(elementElement)
            elementElement.onclick = function (e) {
                // 忽略
            }
        }
    }
</script>

</body>
</html>

utils.js

js 复制代码
const utils = {
    getQueryVariable(variable) {
        let query = window.location.search.substring(1);
        let vars = query.split("&");
        for (var i = 0; i < vars.length; i++) {
            var pair = vars[i].split("=");
            if (pair[0] === variable) {
                return decodeURI(pair[1]);
            }
        }
        return false;
    },

    timerObj: {},

    /**
     * 防抖,点击再多次,最后一次生效
     *
     * @param id 操作id
     * @param call 操作函数
     * @param timeout 防抖间隔
     */
    antiShake(id, call, timeout) {
        let sortInputTimer = utils.timerObj[id];
        if (sortInputTimer) {
            // 杀掉上一个定时器
            clearTimeout(sortInputTimer);
        }
        // 开启下一个定时器
        utils.timerObj[id] = setTimeout(function () {
            clearTimeout(sortInputTimer);

            call ? call() : null;

            utils.timerObj[id] = 0;
        }, timeout ? timeout : 800);
    },

    /**
     * 限流,每次点击,只有第一次生效,到定时结束前,都不生效
     *
     * @param id 操作id
     * @param call 操作函数
     * @param timeout 限流间隔
     */
    currentLimit(id, call, timeout) {
        let sortInputTimer = utils.timerObj[id];
        // 如果有定时器,则不执行
        if (sortInputTimer) {
            return false;
        }
        call ? call() : null;
        // 开启一个定时器
        utils.timerObj[id] = setTimeout(function () {
            // 清空定时器
            clearTimeout(sortInputTimer);
            utils.timerObj[id] = 0;
        }, timeout ? timeout : 800);
    }
}

export {utils}
相关推荐
GISer_Jing7 分钟前
AI Agent操作系统架构师:Harness Engineer解析
前端·人工智能·ai·aigc
英俊潇洒美少年16 分钟前
css中专门用来提升渲染性能、减少重排重绘的属性
前端·css
天若有情67330 分钟前
前端HTML精讲01:别再乱 div 一把抓,吃透语义化标签才是进阶第一步
前端·html
Highcharts.js30 分钟前
React 开发者的图表库生态:Highcharts React
前端·react.js·前端框架
阿部多瑞 ABU31 分钟前
文明文化悖论
前端·人工智能·ai写作
钛态1 小时前
Flutter 三方库 react 泛前端核心范式框架鸿蒙原生层生态级双向超能适配:跨时空重塑响应式单向数据流拓扑与高度精密生命周期树引擎解耦视图渲染控制中枢(适配鸿蒙 HarmonyOS ohos)
前端·flutter·react.js
全栈前端老曹1 小时前
【前端地图】地图开发基础概念——地图服务类型(矢量图、卫星图、地形图)、WGS84 / GCJ-02 / BD09 坐标系、地图 SDK 简介
前端·javascript·地图·wgs84·gcj-02·bd09·地图sdk
只与明月听1 小时前
RAG深入学习之向量数据库
前端·人工智能·python
吕不说1 小时前
AI 面试总挂?可能是表达出了问题:三层表达法 + STAR 进阶框架
前端
社恐的下水道蟑螂2 小时前
LangChain 进阶实战:从玩具 Demo 到生产级 AI 应用(JS/TS 全栈版)
前端·langchain·openai