vue中實現圖片全屏縮放預覽,支援移動端
阿新 • • 發佈:2018-10-31
# 安裝
npm install vue-photo-preview --save
# 引入 import preview from 'vue-photo-preview' import 'vue-photo-preview/dist/skin.css' Vue.use(preview) //或者 //var option={....} option配置請檢視 http://photoswipe.com/documentation/options.html //Vue.use(preview,option) 作者:小包子和蝸牛 連結:https://www.jianshu.com/p/68f108a7a450來源:簡書 簡書著作權歸作者所有,任何形式的轉載都請聯絡作者獲得授權並註明出處。
# umd <link rel="stylesheet" type="text/css" href="路徑/dist/skin.css"/> <script src="路徑/dist/vue-photo-preview.js" type="text/javascript" charset="utf-8"></script> <script type="text/javascript"> var options={ fullscreenEl:false //關閉全屏按鈕 } Vue.use(vuePhotoPreview,options) new Vue({ el:'#app' }) </script>
# html //在img標籤新增preview屬性 preview值相同即表示為同一組 <img防止轉換 src="xxx.jpg" preview preview-text="描述文字"> //分組 <img防止轉換 src="xxx.jpg" preview="1" preview-text="描述文字"> <img防止轉換 src="xxx.jpg" preview="1" preview-text="描述文字"> <img防止轉換 src="xxx.jpg" preview="2" preview-text="描述文字"> <img防止轉換 src="xxx.jpg" preview="2" preview-text="描述文字">