直播平臺搭建,使用vue-pdf 實現pdf線上預覽並且自定義預覽框高度
直播平臺搭建,使用vue-pdf 實現pdf線上預覽並且自定義預覽框高度
.pdf-preview { height: 100%; }
解決方案:提高指定樣式的應用優先權(優先順序)
.pdf-preview { height: 100%; } // 穿透vue-pdf外掛中的canvas樣式 .pdf-preview canvas { //提高指定樣式規則的應用優先權(優先順序) height: 100% !important; }
附上完整程式碼:
<!-- * @Author: WenZhiming * @Date: 2022-09-26 17:17:55 * @LastEditors: WenZhiming * @LastEditTime: 2022-09-26 18:03:13 * @Description: file content --> <template> <div class="container_upload relative"> <pdf v-if="pdfUrl && pdfUrl.endsWith('.pdf')" :src="pdfUrl" ></pdf> <div> <el-button v-if="pdfUrl" type="primary" plain @click="previewPDF"> {{ $t('檢視') }} </el-button> <el-button type="primary" @click="uploadPdf"> {{ $t('上傳') }} </el-button> </div> <input ref="pdfInput" type="file" style="display: none" accept="application/pdf" @change="fileChange" /> </div> </template> <script> import pdf from 'vue-pdf' export default { components: { pdf, }, data() { return { pdfUrl: '', } }, methods: { uploadPdf() { this.$refs.pdfInput.click() }, fileChange(ev) { //檔案上傳到阿里雲oss獲得url // this._upload(ev, (url) => { // this.pdfUrl = url // }) this.pdfUrl = ' }, previewPDF() { window.open(this.pdfUrl, '_blank') }, }, } </script> <style> .container_upload { width: 150px; height: 256px; border: 1px solid #ddd; border-radius: 4px; display: flex; flex-direction: column; justify-content: center; align-items: center; .buttons { z-index: 1; position: absolute; display: flex; flex-direction: column; .el-button { margin-left: 0; width: 80px; } } img { width: 100%; height: 100%; } } .pdf-preview { height: 100%; } // 穿透vue-pdf外掛中的canvas樣式 .pdf-preview canvas { //提高指定樣式規則的應用優先權(優先順序) height: 100% !important; } </style>
以上就是直播平臺搭建,使用vue-pdf 實現pdf線上預覽並且自定義預覽框高度, 更多內容歡迎關注之後的文章
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2984431/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- react-pdf預覽線上PDF的使用React
- html中線上預覽pdf檔案之pdf線上預覽外掛HTML
- 在electron下實現PDF線上預覽功能
- office轉pdf和圖片實現線上預覽
- HTML5線上預覽PDFHTML
- react實現移動端PDF線上預覽外掛React
- 文件線上預覽的實現
- 前端實現線上預覽pdf、word、xls、ppt等檔案前端
- react線上預覽pdf,外掛react-pdfReact
- java實現文件線上預覽工具Java
- uniapp 線上預覽pdf 或者 檔案APP
- 線上直播原始碼,自定義AlertDialog設定寬高並去掉預設的邊框原始碼
- 結合 Laravel 實現檔案(PDF、world、Excel 之類)線上預覽?LaravelExcel
- vue中如何實現pdf檔案預覽?Vue
- OmniMarkupPreviewer 使用自定義的瀏覽器預覽markdown檔案View瀏覽器
- kkFileView預覽檔案 指定預覽方式為pdfView
- vue整合pdfjs,實現pdf檔案預覽VueJS
- 利用 ICEpdf 快速實現 pdf 檔案預覽功能
- 直播平臺搭建,實現自定義設定登入頁面
- 直播平臺搭建,自定義View實現loading動畫載入View動畫
- 前端使用 Konva 實現視覺化設計器(8)- 預覽框前端視覺化
- 直播電商平臺開發,釋出多圖片上傳到伺服器並實現圖片預覽功能伺服器
- 實現圖片預覽
- Java後臺返回PDF檔案預覽下載Java
- 直播平臺搭建,自定義氣泡效果(BubbleView)View
- Web專案中預覽PDFWeb
- Office文件線上預覽方案
- kkFileView檔案線上預覽View
- 如何使用預覽程式編輯PDF檔案?
- 如何實現檔案轉換與線上預覽功能
- 記錄---前端如何實現檔案的線上預覽?前端
- Android自定義預定日曆,並且顯示陰曆Android
- PDF、PPT、Excel、Word、視訊等格式檔案線上預覽Excel
- Mac預覽工具使用技巧,Mac預覽功能實用技巧大全Mac
- Mac預覽工具使用教程,Mac預覽功能實用技巧大全Mac
- Jquery Media外掛使用,解決線上預覽及開啟PDF檔案jQuery
- jq實現上傳頭像並實時預覽功能
- JS 實現全景圖預覽JS