html5预览PDF(vue3)
官网下载PDF.JS,得到 以下文件,放到PUBLIC目录 下: 注:记得修改viewer.html/viewer.mjs中的路径。 新建pdfview.vue: <script setup> import {ref, onMounted} from 'vue' import http from "@/utils/http.js"; import router from "@/router/index.js"; import {useRoute} from 'vue-router'; const route = useRoute(); const url = ref(''); function onBack() { router.go(-1); } onMounted(() => { console.log(route.query) url.value = "/pdf/viewer.html...
html canvas档住 输入框问题
只需要给canvas和html elements增加: z-index 和 position 即可。 for example: #wrapper canvas { top: 0; left: 0; width: 1950px; height: auto; position: absolute; z-index: 1; } .login{ color:#fff; margin:0 auto; width:600px; height:400px; z-index:999; position: relative; }
HTML中ListBox的控件
// <select name="list" multiple="true" size="25" > <option value= "1 " > 爱情片 </option> <option value= "2 " > 动作片 </option> <option value= "3 " > 战争片 </option> <option value= "4 " > 恐怖片 </option> <option value= "5 " > 喜剧片 </option> <option value= "6 " > 伦理片 </option> <option value= "7 " > 电视剧 </option> <option ...