|
|
|
|
|
<template>
|
|
|
|
|
|
<div v-if="isShow">
|
|
|
|
|
|
<!-- <a-modal-->
|
|
|
|
|
|
<!-- v-model="isShow"-->
|
|
|
|
|
|
<!-- :title="title"-->
|
|
|
|
|
|
<!-- @ok="handleOk"-->
|
|
|
|
|
|
<!-- @cancel="handleCancel"-->
|
|
|
|
|
|
<!-- ok-text="确认"-->
|
|
|
|
|
|
<!-- cancel-text="取消"-->
|
|
|
|
|
|
<!-- class="p-model"-->
|
|
|
|
|
|
<!-- >-->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- </a-modal>-->
|
|
|
|
|
|
<div class="video-mask">
|
|
|
|
|
|
<canvas class="video-canvas"></canvas>
|
|
|
|
|
|
<div class="video-close" @click="handleCancel">
|
|
|
|
|
|
╳
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="operation-list">
|
|
|
|
|
|
<div class="operation-item">
|
|
|
|
|
|
<img src="@/assets/sub-icon.png" alt="" @mousedown="zoomDecStart" @mouseup="zoomDecStop">
|
|
|
|
|
|
<span>变倍</span>
|
|
|
|
|
|
<img src="@/assets/add-icon.png" alt="" @mousedown="zoomAddStart" @mouseup="zoomAddStop">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="operation-item">
|
|
|
|
|
|
<img src="@/assets/sub-icon.png" alt="" @mousedown="focusDecStart" @mouseup="focusDecStop">
|
|
|
|
|
|
<span>变焦</span>
|
|
|
|
|
|
<img src="@/assets/add-icon.png" alt="" @mousedown="focusAddStart" @mouseup="focusAddStop">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="operation-item">
|
|
|
|
|
|
<img src="@/assets/sub-icon.png" alt="" @mousedown="irisDecStart" @mouseup="irisDecStop">
|
|
|
|
|
|
<span>光圈</span>
|
|
|
|
|
|
<img src="@/assets/add-icon.png" alt="" @mousedown="irisAddStart" @mouseup="irisAddStop">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="direction-list">
|
|
|
|
|
|
<div class="direction-item">
|
|
|
|
|
|
<img src="@/assets/left-top-icon.png" alt="" @mousedown="leftUpStart" @mouseup="leftUpStop">
|
|
|
|
|
|
<img src="@/assets/top-icon.png" alt="" @mousedown="upStart" @mouseup="upStop">
|
|
|
|
|
|
<img src="@/assets/right-top-icon.png" alt="" @mousedown="rightUpStart" @mouseup="rightUpStop">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="direction-item">
|
|
|
|
|
|
<img src="@/assets/left-icon.png" alt="" @mousedown="leftStart" @mouseup="leftStop">
|
|
|
|
|
|
<img src="@/assets/right-icon.png" alt="" @mousedown="rightStart" @mouseup="rightStop">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="direction-item">
|
|
|
|
|
|
<img src="@/assets/left-bottom-icon.png" alt="" @mousedown="leftDownStart" @mouseup="leftDownStop">
|
|
|
|
|
|
<img src="@/assets/bottom-icon.png" alt="" @mousedown="downStart" @mouseup="downStop">
|
|
|
|
|
|
<img src="@/assets/right-bottom-icon.png" alt="" @mousedown="rightDownStart" @mouseup="rightDownStop">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
|
|
|
var formItemAcrossLayout = { //formItemAcrossLayout当表单内item横向排列时用
|
|
|
|
|
|
labelCol: { span: 8 }, //lable长度
|
|
|
|
|
|
wrapperCol: { span: 14 }, //input长度
|
|
|
|
|
|
};
|
|
|
|
|
|
var formItemVerticalLayout = { //formItemVerticalLayout当表单内item纵向排列时用
|
|
|
|
|
|
labelCol: { span: 4 },
|
|
|
|
|
|
wrapperCol: { span: 8, offset: 4 },
|
|
|
|
|
|
};
|
|
|
|
|
|
export default {
|
|
|
|
|
|
props:[ 'visible', 'modelData'],
|
|
|
|
|
|
watch: {
|
|
|
|
|
|
//监听并接收父组件的visible并赋值给isShow(子组件接收父组件props传过来的值时不能起一样的类名,会报重复定义的错)
|
|
|
|
|
|
visible: function(newVal){
|
|
|
|
|
|
this.isShow = newVal; //newVal即是visible
|
|
|
|
|
|
// newVal && this.showConfirm(); //newVal存在的话执行showConfirm函数
|
|
|
|
|
|
},
|
|
|
|
|
|
modelData: function(newVal){
|
|
|
|
|
|
// console.log(newVal)
|
|
|
|
|
|
if(newVal.id){
|
|
|
|
|
|
this.id = newVal.id
|
|
|
|
|
|
console.log(newVal)
|
|
|
|
|
|
// console.log('触发了watch,重新赋值')
|
|
|
|
|
|
this.$nextTick(()=>{ //this.$nextTick解决不能在表单渲染之前赋值的报错问题
|
|
|
|
|
|
console.log(newVal.rtsp)
|
|
|
|
|
|
this.$api.httpApi.getChannel({
|
|
|
|
|
|
data:{
|
|
|
|
|
|
"sourceUrl":newVal.rtsp,
|
|
|
|
|
|
"paramBefore": "-y -i",
|
|
|
|
|
|
"paramBehind": "-f mpegts -codec:v mpeg1video -an -s 1707*960 -b:v 1000k -r 20 -bf 0 -codec:a mp2 -ar 44100 -ac 1 -b:a 128k"
|
|
|
|
|
|
}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
console.log(res.data)
|
|
|
|
|
|
var url = 'ws://192.168.66.56:9007/api/lychee/stream/live/'+res.data.channel
|
|
|
|
|
|
var player = new JSMpeg.Player(url, {
|
|
|
|
|
|
canvas: document.querySelector('.video-canvas'),
|
|
|
|
|
|
audio: false,
|
|
|
|
|
|
pauseWhenHidden: false,
|
|
|
|
|
|
videoBufferSize: 8 * 1024 * 1024,
|
|
|
|
|
|
loop:false,
|
|
|
|
|
|
})
|
|
|
|
|
|
player.play()
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
isShow:false,
|
|
|
|
|
|
title:'',
|
|
|
|
|
|
closable:false,//取消model模态框右上角的X号
|
|
|
|
|
|
formItemAcrossLayout,
|
|
|
|
|
|
formItemVerticalLayout,
|
|
|
|
|
|
confirmLoading: false,
|
|
|
|
|
|
form: this.$form.createForm(this, { name: 'dynamic_rule' }),
|
|
|
|
|
|
id:'',
|
|
|
|
|
|
mdata:[]
|
|
|
|
|
|
};
|
|
|
|
|
|
},
|
|
|
|
|
|
mounted() {
|
|
|
|
|
|
console.log('mounted执行了')
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
zoomDecStart(){
|
|
|
|
|
|
console.log('变倍-按下')
|
|
|
|
|
|
this.$axios.post('/camera/control/zoomDec/start/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
zoomDecStop(){
|
|
|
|
|
|
console.log('变倍-抬起')
|
|
|
|
|
|
this.$axios.post('/camera/control/zoomDec/stop/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
zoomAddStart(){
|
|
|
|
|
|
console.log('变倍+按下')
|
|
|
|
|
|
this.$axios.post('/camera/control/zoomAdd/start/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
zoomAddStop(){
|
|
|
|
|
|
console.log('变倍+抬起')
|
|
|
|
|
|
this.$axios.post('/camera/control/zoomAdd/stop/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
focusDecStart(){
|
|
|
|
|
|
console.log('变焦-按下')
|
|
|
|
|
|
this.$axios.post('/camera/control/focusDec/start/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
focusDecStop(){
|
|
|
|
|
|
console.log('变焦-抬起')
|
|
|
|
|
|
this.$axios.post('/camera/control/focusDec/stop/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
focusAddStart(){
|
|
|
|
|
|
console.log('变焦+按下')
|
|
|
|
|
|
this.$axios.post('/camera/control/focusAdd/start/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
focusAddStop(){
|
|
|
|
|
|
console.log('变焦+抬起')
|
|
|
|
|
|
this.$axios.post('/camera/control/focusAdd/stop/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
irisDecStart(){
|
|
|
|
|
|
console.log('光圈-按下')
|
|
|
|
|
|
this.$axios.post('/camera/control/irisDec/start/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
irisDecStop(){
|
|
|
|
|
|
console.log('光圈-抬起')
|
|
|
|
|
|
this.$axios.post('/camera/control/irisDec/stop/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
irisAddStart(){
|
|
|
|
|
|
console.log('光圈+按下')
|
|
|
|
|
|
this.$axios.post('/camera/control/irisAdd/start/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
irisAddStop(){
|
|
|
|
|
|
console.log('光圈+抬起')
|
|
|
|
|
|
this.$axios.post('/camera/control/irisAdd/stop/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
leftUpStart(){
|
|
|
|
|
|
console.log('左上鼠标按下')
|
|
|
|
|
|
this.$axios.post('/camera/control/leftUp/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
leftUpStop(){
|
|
|
|
|
|
console.log('左上鼠标抬起')
|
|
|
|
|
|
this.$axios.post('/camera/control/leftUp/stop/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
upStart(){
|
|
|
|
|
|
console.log('上鼠标按下')
|
|
|
|
|
|
this.$axios.post('/camera/control/up/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
upStop(){
|
|
|
|
|
|
console.log('上鼠标抬起')
|
|
|
|
|
|
this.$axios.post('/camera/control/up/stop/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
rightUpStart(){
|
|
|
|
|
|
console.log('右上鼠标按下')
|
|
|
|
|
|
this.$axios.post('/camera/control/rightUp/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
rightUpStop(){
|
|
|
|
|
|
console.log('右上鼠标抬起')
|
|
|
|
|
|
this.$axios.post('/camera/control/rightUp/stop/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
leftStart(){
|
|
|
|
|
|
// console.log(this.id)
|
|
|
|
|
|
console.log('左转鼠标按下')
|
|
|
|
|
|
this.$axios.post('/camera/control/left/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
leftStop(){
|
|
|
|
|
|
console.log('左转鼠标抬起')
|
|
|
|
|
|
this.$axios.post('/camera/control/left/stop/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
rightStart(){
|
|
|
|
|
|
console.log('右转鼠标按下')
|
|
|
|
|
|
this.$axios.post('/camera/control/right/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
rightStop(){
|
|
|
|
|
|
console.log('右转鼠标抬起')
|
|
|
|
|
|
this.$axios.post('/camera/control/right/stop/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
leftDownStart(){
|
|
|
|
|
|
console.log('左下鼠标按下')
|
|
|
|
|
|
this.$axios.post('/camera/control/leftDown/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
leftDownStop(){
|
|
|
|
|
|
console.log('左下鼠标抬起')
|
|
|
|
|
|
this.$axios.post('/camera/control/leftDown/stop/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
downStart(){
|
|
|
|
|
|
console.log('下鼠标按下')
|
|
|
|
|
|
this.$axios.post('/camera/control/down/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
downStop(){
|
|
|
|
|
|
console.log('下鼠标抬起')
|
|
|
|
|
|
this.$axios.post('/camera/control/down/stop/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
rightDownStart(){
|
|
|
|
|
|
console.log('右下鼠标按下')
|
|
|
|
|
|
this.$axios.post('/camera/control/rightDown/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
rightDownStop(){
|
|
|
|
|
|
console.log('右下鼠标抬起')
|
|
|
|
|
|
this.$axios.post('/camera/control/rightDown/stop/'+this.id, {
|
|
|
|
|
|
data: {}
|
|
|
|
|
|
}).then(res => {
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
handleCancel() {
|
|
|
|
|
|
console.log('Clicked cancel button');
|
|
|
|
|
|
console.log(this.title);
|
|
|
|
|
|
location.reload();
|
|
|
|
|
|
setTimeout(function () {
|
|
|
|
|
|
this.$emit('close',false,{})
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
};
|
|
|
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
.video-mask{
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
bottom: 0;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
right: 0;
|
|
|
|
|
|
background-color: #001529;
|
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
|
.video-canvas{
|
|
|
|
|
|
width: 100vw;
|
|
|
|
|
|
height: 100vh;
|
|
|
|
|
|
}
|
|
|
|
|
|
.video-close{
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
right: 20px;
|
|
|
|
|
|
top: 20px;
|
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
|
width: 32px;
|
|
|
|
|
|
height: 32px;
|
|
|
|
|
|
background: rgba(0,0,0,0.5);
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
.operation-list{
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
right: 200px;
|
|
|
|
|
|
bottom: 20px;
|
|
|
|
|
|
/*width: 150px;*/
|
|
|
|
|
|
/*border: solid 1px blue;*/
|
|
|
|
|
|
.operation-item{
|
|
|
|
|
|
img{
|
|
|
|
|
|
width: 42px;
|
|
|
|
|
|
}
|
|
|
|
|
|
span{
|
|
|
|
|
|
padding: 5px 10px;
|
|
|
|
|
|
background: rgba(0,0,0,0.5);
|
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.direction-list{
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
right: 30px;
|
|
|
|
|
|
bottom: 20px;
|
|
|
|
|
|
width: 150px;
|
|
|
|
|
|
/*border: solid 1px blue;*/
|
|
|
|
|
|
.direction-item{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
img{
|
|
|
|
|
|
width: 42px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
img{
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|