当前位置: 首页 > news >正文

做的网站文字是乱码seo是什么岗位的缩写

做的网站文字是乱码,seo是什么岗位的缩写,关于网页制作的毕业设计,深圳装修公司大全现需要上图样式的布局,我通过两张向右方的图片,通过定位和旋转完成了布局。 问题: 由于是通过旋转获取到的样式,实际的盒子是一个长方形,当鼠标移入对应的箭头时选中的可能是其他盒子,如第一张设计稿可以看…

在这里插入图片描述
现需要上图样式的布局,我通过两张向右方的图片,通过定位和旋转完成了布局。在这里插入图片描述
在这里插入图片描述

在这里插入图片描述

问题:
由于是通过旋转获取到的样式,实际的盒子是一个长方形,当鼠标移入对应的箭头时选中的可能是其他盒子,如第一张设计稿可以看出,先需要移入对应块添加事件。

解决方法: 又画了一个圆,将圆平分成8等分通过css样式覆盖保证移入时能移入对应的块。然后覆盖到原本的环形块上,背景透明就可以看到想要的效果和实现事件。设计中心空白不能点击,多添加一个小圆环覆盖。
在这里插入图片描述
参考地址:https://blog.csdn.net/yatsov/article/details/81590011

八等分圆代码

<!DOCTYPE html>
<html>
<head><title>CSS等分圆</title><meta charset="utf-8"><style type="text/css">.circle-left{width: 62.5px;height: 125px;border-radius: 0px 62.5px 62.5px 0px;position: absolute;right: 0;transform-origin: 0 50%;}.circle-left:hover{background-color: yellowgreen !important;}.circle-right{width: 62.5px;height: 125px;border-radius:  62.5px 0px 0px 62.5px ;position: absolute;right: 0;transform-origin: 100% 50%;}#circle0{width: 125px;height: 125px;border-radius: 62.5px;background-color: yellowgreen;position: relative;transform: rotate(-22.5deg);}#circle2{background-color: #70f3ff;}#circle3{background-color: #ff461f;transform: rotate(45deg);}#circle4{background-color: #bce672;transform: rotate(90deg);}#circle5{background-color: #ffffff;transform: rotate(135deg);}#circle6{background-color: #3b2e7e;transform: rotate(-135deg);}#circle7{background-color: #ff2121;transform: rotate(270deg);}#circle8{background-color: #16a951;transform: rotate(315deg);}#circle9{background-color: #e0eee8;transform: rotate(45deg)}#left{clip: rect(0px 62.5px 125px 0px);position: absolute;right: 0px;width: 62.5px;height: 125px;overflow: hidden;}#right{clip: rect(0px 62.5px 125px 0px);position: absolute;left: 0px;width: 62.5px;height: 125px;overflow: hidden;}</style>
</head>
<body><div id="circle0"><div id="left"><div class="circle-left" id="circle2">1</div><div class="circle-left" id="circle3">2</div><div class="circle-left" id="circle4">3</div><div class="circle-left" id="circle5">4</div></div><div id="right"><div class="circle-right" id="circle9">6</div><div class="circle-right" id="circle8">7</div><div class="circle-right" id="circle7">8</div><div class="circle-right" id="circle6">9</div></div></div>
</body>
</html>
``## 实际业务样式代码
```vue
<template><div class="control"><!-- 加add 减subtract --><div class="control_img_box" title="关闭声音"><img src="@/assets/image/vol.png" alt=""></div><div class="control_img_box" title="进入全屏"><img @click="screenfull" src="@/assets/image/full.png" alt=""></div><div class="control_img_box" @click="setCameraControl" title="云台控制器"><img src="@/assets/image/control.png" alt=""></div><!-- 云台控件 摄像头控制 --><div class="camera-control" v-show="isShowCameraControl"><div class="camera-control-left flex"><div class="content-box"><!-- 拼接辅助线 --><!-- <div class="line1"></div><div class="line2"></div> --><!-- 展示圆环 --><div class="img-box" :class="'img-box'+(i+1)" v-for="(url,i) in imgArr" :key="i"><img @mouseenter="handleMouseEnter(i)" @mouseleave="handleMouseLeave(i)" :src="url" alt=""></div><!-- 绑定事件的透明圆环 --><div id="circle0"><div id="left"><div class="circle-left" @mouseenter="handleMouseEnter(1)" @mouseleave="handleMouseLeave(1)" id="circle2"></div><div class="circle-left" @mouseenter="handleMouseEnter(2)" @mouseleave="handleMouseLeave(2)" id="circle3"></div><div class="circle-left" @mouseenter="handleMouseEnter(3)" @mouseleave="handleMouseLeave(3)" id="circle4"></div><div class="circle-left" @mouseenter="handleMouseEnter(4)" @mouseleave="handleMouseLeave(4)" id="circle5"></div></div><div id="right"><div class="circle-right" @mouseenter="handleMouseEnter(8)" @mouseleave="handleMouseLeave(8)" id="circle9"></div><div class="circle-right" @mouseenter="handleMouseEnter(7)" @mouseleave="handleMouseLeave(7)" id="circle8"></div><div class="circle-right" @mouseenter="handleMouseEnter(6)" @mouseleave="handleMouseLeave(6)" id="circle7"></div><div class="circle-right" @mouseenter="handleMouseEnter(5)" @mouseleave="handleMouseLeave(5)" id="circle6"></div></div><div class="center"></div></div></div></div><div class="camera-control-right"><div class="btn-list"><div>变焦</div><div class="btn-box"><div class="flex" @click="toZoom('add')"><img src="@/assets/image/add.png" alt=""></div><div class="flex" @click="toZoom('minus')"><img src="@/assets/image/minus.png" alt=""></div></div></div><div class="btn-list"><div>缩放</div><div class="btn-box"><div class="flex" @click="toScale('add')"><img src="@/assets/image/add.png" alt=""></div><div class="flex" @click="toScale('minus')"><img src="@/assets/image/minus.png" alt=""></div></div></div></div></div></div>
</template><script>
import img from '@/assets/image/arrows.png'
import img2 from '@/assets/image/arrows21.png'
export default {name: '',components: {},props: [],data() {return {isShowCameraControl: false,imgArr: [img, img, img, img, img, img, img, img],}},mounted() {},methods: {handleMouseEnter(i) {this.$set(this.imgArr, i - 1, img2)},handleMouseLeave(i) {this.$set(this.imgArr, i - 1, img)},setCameraControl() {this.isShowCameraControl = !this.isShowCameraControl},screenfull() {this.$emit('screenfull')},toScale(str) {console.log('缩放', str)},toZoom(str) {console.log('变焦', str)}}
}
</script>
<style lang='scss' scoped>
.control {position: absolute;left: 0px;bottom: 0px;width: 100%;padding: 15px 7px;display: flex;justify-content: flex-end;&_img_box {cursor: pointer;padding: 10px 10px 6px;margin-right: 10px;background: linear-gradient(162deg, rgba(3, 33, 120, 0.9) 0%, rgba(3, 33, 120, 0.4) 100%);border-radius: 3px;opacity: 1;border: 1px solid;border-image: linear-gradient(180deg, rgba(18, 106, 205, 1), rgba(11, 87, 173, 0)) 1 1;> img {width: 20px;height: 20px;}}.camera-control {position: absolute;display: flex;top: -150px;right: 16px;padding: 6px 10px;width: 319px;height: 150px;background: linear-gradient(to bottom right, #032078ab 30%, #0b57ad60 100%);> div {flex: 1;}&-left {.content-box {position: relative;width: 125px;height: 125px;border-radius: 50%;background: url('@/assets/image/circle.png');background-size: 125px 125px;.circle-left {width: 62.5px;height: 125px;border-radius: 0px 62.5px 62.5px 0px;position: absolute;right: 0;transform-origin: 0 50%;}.circle-right {width: 62.5px;height: 125px;border-radius: 62.5px 0px 0px 62.5px;position: absolute;right: 0;transform-origin: 100% 50%;}#circle0 {position: absolute;left: 0px;top: 0px;width: 125px;height: 125px;border-radius: 62.5px;position: relative;transform: rotate(-22.5deg);.center {position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);width: 50px;height: 50px;border-radius: 50%;}}#circle3 {transform: rotate(45deg);}#circle4 {transform: rotate(90deg);}#circle5 {transform: rotate(135deg);}#circle6 {transform: rotate(-135deg);}#circle7 {transform: rotate(270deg);}#circle8 {transform: rotate(315deg);}#circle9 {transform: rotate(45deg);}#left {clip: rect(0px 62.5px 125px 0px);position: absolute;right: 0px;width: 62.5px;height: 125px;overflow: hidden;}#right {clip: rect(0px 62.5px 125px 0px);position: absolute;left: 0px;width: 62.5px;height: 125px;overflow: hidden;}.line1 {position: absolute;width: 125px;height: 2px;background: red;left: 50%;margin-left: -62.5px;top: 50%;margin-top: -1px;z-index: 999;}.line2 {position: absolute;left: 50%;margin-top: -62.5px;top: 50%;margin-left: -1px;width: 2px;height: 125px;background: red;z-index: 999;}.img-box {// width: 54px;// height: 58px;position: absolute;// > img {//     width: 54px;//     height: 58px;// }}.img-box1 {left: 31px;top: -14px;transform: rotate(-90deg);}.img-box2 {left: 64px;top: -2px;transform: rotate(-45deg);}.img-box3 {left: 79px;top: 29px;transform: rotate(0deg);}.img-box4 {left: 67px;top: 62px;transform: rotate(46deg);}.img-box5 {left: 36px;top: 77px;transform: rotate(90deg);}.img-box6 {left: 4px;top: 66px;transform: rotate(135deg);}.img-box7 {left: -12px;top: 35px;transform: rotate(-180deg);}.img-box8 {left: -1px;top: 2px;transform: rotate(-135deg);}}}&-right {display: flex;flex-direction: column;justify-content: center;align-items: center;font-size: 14px;font-weight: bold;color: #a5c3ff;.btn-list {display: flex;align-items: center;margin: 12px 0px;}.btn-box {width: 70px;height: 32px;margin-left: 12px;background: linear-gradient(180deg, #009afc 0%, #003cb1 100%);box-shadow: inset 0px 2px 4px 0px #08ebff, 0px 4px 4px 0px rgba(0, 0, 0, 0.25);border-radius: 2px;border: 1px solid #0e2977;display: flex;> div {width: 35px;height: 32px;cursor: pointer;> img {width: 16px;height: 16px;}}}}}
}
</style>

文章转载自:
http://overmodest.tzmc.cn
http://cairo.tzmc.cn
http://guanaco.tzmc.cn
http://corespondent.tzmc.cn
http://persepolis.tzmc.cn
http://fracturation.tzmc.cn
http://elf.tzmc.cn
http://yogism.tzmc.cn
http://combined.tzmc.cn
http://defenceless.tzmc.cn
http://narceine.tzmc.cn
http://metacode.tzmc.cn
http://sunderance.tzmc.cn
http://rhizocaline.tzmc.cn
http://jejunectomy.tzmc.cn
http://allied.tzmc.cn
http://nonassessable.tzmc.cn
http://tidytips.tzmc.cn
http://ocarina.tzmc.cn
http://omniparity.tzmc.cn
http://nonlife.tzmc.cn
http://predispose.tzmc.cn
http://dioptase.tzmc.cn
http://butyrinase.tzmc.cn
http://paybox.tzmc.cn
http://farmyard.tzmc.cn
http://braillewriter.tzmc.cn
http://cyclonet.tzmc.cn
http://merchandiser.tzmc.cn
http://neumatic.tzmc.cn
http://banderole.tzmc.cn
http://meandrine.tzmc.cn
http://pedicle.tzmc.cn
http://riotously.tzmc.cn
http://espiegle.tzmc.cn
http://semimat.tzmc.cn
http://excrementitious.tzmc.cn
http://subclavian.tzmc.cn
http://irrotational.tzmc.cn
http://selkirkshire.tzmc.cn
http://chieftain.tzmc.cn
http://stagehand.tzmc.cn
http://spoof.tzmc.cn
http://isocheim.tzmc.cn
http://executorial.tzmc.cn
http://tackify.tzmc.cn
http://immoderate.tzmc.cn
http://staghound.tzmc.cn
http://picturize.tzmc.cn
http://housefather.tzmc.cn
http://fricative.tzmc.cn
http://affectionateness.tzmc.cn
http://sesquicarbonate.tzmc.cn
http://apogeotropic.tzmc.cn
http://farmergeneral.tzmc.cn
http://acheb.tzmc.cn
http://eskimology.tzmc.cn
http://vasodilator.tzmc.cn
http://swordplay.tzmc.cn
http://piccadilly.tzmc.cn
http://etypic.tzmc.cn
http://innumerability.tzmc.cn
http://propman.tzmc.cn
http://pyretotherapy.tzmc.cn
http://jackass.tzmc.cn
http://psoas.tzmc.cn
http://autocatalysis.tzmc.cn
http://highstick.tzmc.cn
http://hvar.tzmc.cn
http://behavior.tzmc.cn
http://osteosarcoma.tzmc.cn
http://broadwife.tzmc.cn
http://horner.tzmc.cn
http://dee.tzmc.cn
http://methylase.tzmc.cn
http://amateurish.tzmc.cn
http://loudspeaker.tzmc.cn
http://comfortlessly.tzmc.cn
http://trichogen.tzmc.cn
http://goatish.tzmc.cn
http://intercooler.tzmc.cn
http://flamboyance.tzmc.cn
http://carboniferous.tzmc.cn
http://zizz.tzmc.cn
http://idiosyncracy.tzmc.cn
http://dard.tzmc.cn
http://mosaicist.tzmc.cn
http://fuzzball.tzmc.cn
http://curr.tzmc.cn
http://intriguante.tzmc.cn
http://antileukemic.tzmc.cn
http://dimidiation.tzmc.cn
http://un.tzmc.cn
http://riad.tzmc.cn
http://cartwright.tzmc.cn
http://telematic.tzmc.cn
http://hassidic.tzmc.cn
http://culpable.tzmc.cn
http://fliting.tzmc.cn
http://flopover.tzmc.cn
http://www.dt0577.cn/news/120673.html

相关文章:

  • 安福网站制作广州的百度推广公司
  • 网站开发的平台网页制作公司哪家好
  • 深圳市住房和建设局人事调整seo短视频
  • 沈阳做网站需要多少钱免费的建站平台
  • 温州自媒体公司网站seo具体怎么做?
  • wordpress 自动汉化版seo优化的基本流程
  • 廊坊网站建设品牌免费优化推广网站的软件
  • 阿里云虚拟主机多网站seo网站设计
  • 做网站应该画什么图百度一下首页网页手机版
  • 直播软件推荐网站优化策略分析论文
  • 做h网站今日舆情热点
  • 郑州专业旅游网站建设google play官网下载
  • 广州越秀区最新疫情seo关键词优化推广报价表
  • avada如何做中英文双语网站微信公众号营销
  • 先做网站还是先申请域名免费的网站域名查询app
  • 有哪些好点的单页网站如何做一个自己的电商平台
  • 网站的主要栏目及功能看网站搜什么关键词
  • 软件网站是怎么做的口碑营销属于什么营销
  • 国外免费logo设计网站网上推广企业
  • 零食类营销网站怎么做郑州专业seo推荐
  • 网站建设的评分细则seo领导屋
  • 网站定位的核心意义官网排名优化方案
  • wordpress 站点url广东疫情最新消息
  • 用php做网站教程长沙网络推广外包
  • 手动升级wordpress长春seo排名公司
  • 网站的meta标签优化长春网站快速排名提升
  • 做网站过时了全专业优化公司
  • 大理公司网站建设北京百度推广电话号码
  • 网络公司网站设计方案ppt企业培训课程清单
  • 网站搭建空间b2b平台是什么意思啊