|
@@ -1,119 +1,92 @@
|
|
|
<template>
|
|
|
<div id="equip_pro">
|
|
|
<div class="title">设备实例本地名称</div>
|
|
|
- <el-tabs v-model="activeName" @tab-click="handleClick">
|
|
|
+ <el-tabs v-model="activeName">
|
|
|
<el-tab-pane label="基本信息" name="first">
|
|
|
- <div class="equip-info-box">
|
|
|
+ <div class="equip-info-box box-padding box-border-bottom">
|
|
|
<div class="equip-info-item">
|
|
|
<p class="equip-info-title">本地名称:</p>
|
|
|
- <h3 class="equip-info-value">暖通分区B1立式水泵</h3>
|
|
|
+ <h3 class="equip-info-value" :title="EquipItem.legendData.localName || '--'">
|
|
|
+ {{ EquipItem.legendData.localName || "--" }}
|
|
|
+ </h3>
|
|
|
</div>
|
|
|
<div class="equip-info-item">
|
|
|
- <p class="equip-info-title">本地名称:</p>
|
|
|
- <h3 class="equip-info-value">暖通分区B1立式水泵</h3>
|
|
|
+ <p class="equip-info-title">本地编码:</p>
|
|
|
+ <h3 class="equip-info-value" :title="EquipItem.legendData.localId || '--'">
|
|
|
+ {{ EquipItem.legendData.localId || "--" }}
|
|
|
+ </h3>
|
|
|
</div>
|
|
|
<div class="equip-info-item">
|
|
|
<p class="equip-info-title">BIM坐标(XYZ):</p>
|
|
|
- <h3 class="equip-info-value">暖通分区B1立式水泵</h3>
|
|
|
+ <h3 class="equip-info-value" :title="EquipItem.legendData.bimLocation || '--'">
|
|
|
+ {{ EquipItem.legendData.bimLocation || "--" }}
|
|
|
+ </h3>
|
|
|
</div>
|
|
|
- <el-button size="small" style="width: 100%;" >查看详情</el-button>
|
|
|
+ <el-button size="small" style="width: 100%" @click="$message.info('功能待开发!')">查看详情</el-button>
|
|
|
</div>
|
|
|
- </el-tab-pane>
|
|
|
- <el-tab-pane label="属性" name="second">
|
|
|
- <div class="property">
|
|
|
+ <div class="map-pos-box box-padding property">
|
|
|
+ <p class="box-title">页面位置</p>
|
|
|
<div class="base-property">
|
|
|
- <div>
|
|
|
- <span>W</span>
|
|
|
- <el-input
|
|
|
- style="width: 74px; margin-left: 6px"
|
|
|
- size="mini"
|
|
|
- v-model="width"
|
|
|
- @input="changeWidth"
|
|
|
- placeholder="请输入内容"
|
|
|
- ></el-input>
|
|
|
+ <div class="base-property-item">
|
|
|
+ <span>X</span>
|
|
|
+ <el-input style="width: 78px; margin-left: 8px" size="mini" v-model="EquipItem.x" placeholder="请输入内容"></el-input>
|
|
|
</div>
|
|
|
- <div>
|
|
|
- <span>H</span>
|
|
|
- <el-input
|
|
|
- style="width: 74px; margin-left: 6px"
|
|
|
- size="mini"
|
|
|
- v-model="height"
|
|
|
- @input="changeHeight"
|
|
|
- placeholder="请输入内容"
|
|
|
- ></el-input>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="base-property base-property-left">
|
|
|
- <div>
|
|
|
- <span>R</span>
|
|
|
- <el-input
|
|
|
- style="width: 74px; margin-left: 6px"
|
|
|
- size="mini"
|
|
|
- disabled
|
|
|
- @input="changeWidth"
|
|
|
- placeholder="请输入内容"
|
|
|
- ></el-input>
|
|
|
+ <div class="base-property-item">
|
|
|
+ <span>Y</span>
|
|
|
+ <el-input style="width: 78px; margin-left: 8px" size="mini" v-model="EquipItem.y" placeholder="请输入内容"></el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="imgUpdate">
|
|
|
- <div class="img-tit">设计图</div>
|
|
|
- <div class="btn-list">
|
|
|
- <el-upload
|
|
|
- class="avatar-uploader"
|
|
|
- action="https://jsonplaceholder.typicode.com/posts/"
|
|
|
- :show-file-list="false"
|
|
|
- :before-upload="beforeAvatarUpload"
|
|
|
- >
|
|
|
- <Button type="default">上传文件</Button>
|
|
|
- </el-upload>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="imgUpdate">
|
|
|
- <div class="img-tit">附加数据</div>
|
|
|
- <div class="textarea">
|
|
|
- <el-input type="textarea" @input="changeAnotherMsg" v-model="anotherMsg" :rows="2" placeholder="请输入内容"> </el-input>
|
|
|
- </div>
|
|
|
+ <el-checkbox v-model="showBimRelation">显示与BIM坐标关系</el-checkbox>
|
|
|
+ </div>
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="属性" name="second">
|
|
|
+ <div class="box-padding box-border-bottom">
|
|
|
+ <p class="box-title" style="padding-top: 0">公式</p>
|
|
|
+ <div class="textarea">
|
|
|
+ <el-input type="textarea" disabled v-model="EquipItem.formula" :rows="2" placeholder="请输入内容"> </el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div class="box-padding box-border-bottom">
|
|
|
+ <p class="box-title">字符</p>
|
|
|
+ </div>
|
|
|
+ <div class="box-padding box-border-bottom">
|
|
|
+ <p class="box-title">显示图标</p>
|
|
|
+ <el-upload
|
|
|
+ class="avatar-uploader"
|
|
|
+ action="https://jsonplaceholder.typicode.com/posts/"
|
|
|
+ :show-file-list="false"
|
|
|
+ :before-upload="beforeAvatarUpload"
|
|
|
+ >
|
|
|
+ <el-button type="small">替换图标</el-button>
|
|
|
+ </el-upload>
|
|
|
+ </div>
|
|
|
+ <div class="box-padding">
|
|
|
+ <p class="box-title">附加数据</p>
|
|
|
+ <el-input type="textarea" v-model="EquipItem.anotherMsg" :rows="3" placeholder="请填写附加数据"> </el-input>
|
|
|
+ </div>
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import { queryEquipMsg, queryDict } from "@/api/editer";
|
|
|
+import { imgBaseUrl, imgServeUpload } from "@/api/imageservice";
|
|
|
import bus from "@/bus/bus";
|
|
|
-const baseUrl = "/image-service/common/image_get?systemId=dataPlatform&key=";
|
|
|
export default {
|
|
|
- props: ["InfoPointList", "EquipData", "equipHeight", "Width", "Height", "AnotherMsg"],
|
|
|
+ props: ["EquipItem"],
|
|
|
data() {
|
|
|
return {
|
|
|
- width: 0,
|
|
|
- height: 0,
|
|
|
+ x: 0,
|
|
|
+ y: 0,
|
|
|
activeName: "first",
|
|
|
- width: "",
|
|
|
- height: "",
|
|
|
msgData: [], //存储二级树
|
|
|
pressMsgData: [], // 搜索后得信息点数组
|
|
|
getPressMsg: "", //输入信息
|
|
|
local: "", //局部加载
|
|
|
anotherMsg: "", // 附加信息
|
|
|
+ showBimRelation: true, // 显示与BIM坐标关系
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
|
- // 折叠信息点操作
|
|
|
- clips(item) {
|
|
|
- item.showChildren = !item.showChildren;
|
|
|
- },
|
|
|
- // 点击切换
|
|
|
- handleClick(tab, event) {
|
|
|
- // 设置高度
|
|
|
- if (tab.paneName == "second") {
|
|
|
- const box = document.getElementsByClassName("msgPoint-list")[0];
|
|
|
- const box2 = document.getElementsByClassName("msgPoint-list-press")[0];
|
|
|
- box.style.height = this.equipHeight;
|
|
|
- box2.style.height = this.equipHeight;
|
|
|
- }
|
|
|
- },
|
|
|
// 设置宽
|
|
|
changeWidth(val) {
|
|
|
bus.$emit("updateStyle", "sWidth", val);
|
|
@@ -127,51 +100,45 @@ export default {
|
|
|
bus.$emit("updateStyle", "anotherMsg", val);
|
|
|
},
|
|
|
beforeAvatarUpload(file) {
|
|
|
- let that = this;
|
|
|
+ // eslint-disable-next-line @typescript-eslint/no-this-alias
|
|
|
const fileReader = new FileReader();
|
|
|
fileReader.readAsDataURL(file); //读取图片
|
|
|
+ console.log(file);
|
|
|
const ftype = file.type;
|
|
|
const fname = file.name;
|
|
|
const uploadKey = file.uid;
|
|
|
- const imgType = ftype.split(".")[ftype.length - 1];
|
|
|
- fileReader.addEventListener("load", function () {
|
|
|
+ // const imgType = ftype.split(".")[ftype.length - 1];
|
|
|
+ fileReader.addEventListener("load", () => {
|
|
|
// 读取完成
|
|
|
- let res = fileReader.result;
|
|
|
+ const res = fileReader.result;
|
|
|
//将canvas的base64位图片转换成图片png的file
|
|
|
- var blob = that.dataURLtoBlob(res, ftype);
|
|
|
+ const blob = this.dataURLtoBlob(res, ftype);
|
|
|
//将其转换成file对象
|
|
|
- let file = new File([blob], fname, {
|
|
|
+ const file = new File([blob], fname, {
|
|
|
type: ftype,
|
|
|
lastModified: Date.now(),
|
|
|
}); //blob转file
|
|
|
|
|
|
// try sending
|
|
|
- let reader = new FileReader();
|
|
|
- let fileType = file.name.split(".");
|
|
|
- let imgType = fileType[fileType.length - 1];
|
|
|
- let CreateTime = that.formatDate(new Date(file.lastModified));
|
|
|
- reader.onloadend = function () {
|
|
|
+ const reader = new FileReader();
|
|
|
+ const fileType = file.name.split(".");
|
|
|
+ const imgType = fileType[fileType.length - 1];
|
|
|
+ reader.onloadend = () => {
|
|
|
// 这个事件在读取结束后,无论成功或者失败都会触发
|
|
|
+ // eslint-disable-next-line no-empty
|
|
|
if (reader.error) {
|
|
|
} else {
|
|
|
// 构造 XMLHttpRequest 对象,发送文件 Binary 数据
|
|
|
- var xhr = new XMLHttpRequest();
|
|
|
- xhr.open(
|
|
|
- /* method */
|
|
|
- "POST",
|
|
|
- /* target url */
|
|
|
- "/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true" +
|
|
|
- "&key=" +
|
|
|
- uploadKey +
|
|
|
- "." +
|
|
|
- imgType
|
|
|
- );
|
|
|
+ const xhr = new XMLHttpRequest();
|
|
|
+ xhr.open("POST", `${imgServeUpload}${uploadKey}.${imgType}`);
|
|
|
xhr.send(reader.result);
|
|
|
- xhr.onreadystatechange = function () {
|
|
|
+ xhr.onreadystatechange = () => {
|
|
|
if (xhr.readyState == 4) {
|
|
|
if (xhr.status == 200) {
|
|
|
- that.url = baseUrl + uploadKey + "." + imgType;
|
|
|
- bus.$emit("updateStyle", "url", baseUrl + uploadKey + "." + imgType);
|
|
|
+ this.EquipItem.defaultUrl = `${uploadKey}.${imgType}`;
|
|
|
+ this.EquipItem.url = `${imgBaseUrl}${uploadKey}.${imgType}`;
|
|
|
+ console.log(uploadKey + "." + imgType);
|
|
|
+ // bus.$emit("updateStyle", "url", baseUrl + uploadKey + "." + imgType);
|
|
|
}
|
|
|
}
|
|
|
};
|
|
@@ -181,20 +148,20 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
dataURLtoBlob(dataURI, type) {
|
|
|
- var binary = atob(dataURI.split(",")[1]);
|
|
|
- var array = [];
|
|
|
- for (var i = 0; i < binary.length; i++) {
|
|
|
+ const binary = atob(dataURI.split(",")[1]);
|
|
|
+ const array = [];
|
|
|
+ for (let i = 0; i < binary.length; i++) {
|
|
|
array.push(binary.charCodeAt(i));
|
|
|
}
|
|
|
return new Blob([new Uint8Array(array)], { type: type });
|
|
|
},
|
|
|
formatDate(now) {
|
|
|
- let year = now.getFullYear();
|
|
|
- let month = now.getMonth() + 1;
|
|
|
- let date = now.getDate();
|
|
|
- let hour = now.getHours();
|
|
|
- let minute = now.getMinutes();
|
|
|
- let second = now.getSeconds();
|
|
|
+ const year = now.getFullYear();
|
|
|
+ const month = now.getMonth() + 1;
|
|
|
+ const date = now.getDate();
|
|
|
+ const hour = now.getHours();
|
|
|
+ const minute = now.getMinutes();
|
|
|
+ const second = now.getSeconds();
|
|
|
return (
|
|
|
year +
|
|
|
"-" +
|
|
@@ -209,282 +176,69 @@ export default {
|
|
|
(second > 10 ? second : "0" + second)
|
|
|
);
|
|
|
},
|
|
|
- // 切换选中选项
|
|
|
- changeCheck(item) {
|
|
|
- item.checked = !item.checked;
|
|
|
- // 添加设备信息点
|
|
|
- Object.assign(item, {
|
|
|
- equipId: this.EquipData.attachObjectIds[0],
|
|
|
- });
|
|
|
- bus.$emit("changeEquipMsgPoint", item);
|
|
|
- },
|
|
|
- // 搜索回车操作
|
|
|
- pressEnter() {
|
|
|
- const list = [];
|
|
|
- if (!this.getPressMsg) {
|
|
|
- this.pressMsgData = [];
|
|
|
- return;
|
|
|
- }
|
|
|
- // 对信息点相同得提取出来
|
|
|
- this.msgData.forEach((item) => {
|
|
|
- item.children.forEach((a) => {
|
|
|
- if (a.name.includes(this.getPressMsg)) {
|
|
|
- list.push(a);
|
|
|
- }
|
|
|
- });
|
|
|
- });
|
|
|
- this.pressMsgData = list;
|
|
|
- },
|
|
|
},
|
|
|
- watch: {
|
|
|
- EquipData(val) {
|
|
|
- this.msgData = []; //存储二级树
|
|
|
- this.pressMsgData = []; // 搜索后得信息点数组
|
|
|
- this.getPressMsg = ""; //输入信息
|
|
|
- // 启动局部 loading
|
|
|
-
|
|
|
- this.local = this.$loading({
|
|
|
- el: this.$refs.localDom,
|
|
|
- type: "local",
|
|
|
- size: "min",
|
|
|
- });
|
|
|
-
|
|
|
- const data = {
|
|
|
- Type: val.properties.classCode,
|
|
|
- };
|
|
|
- queryDict(data)
|
|
|
- .then((res) => {
|
|
|
- let arr = [];
|
|
|
- // 勾选设备中选中的对象
|
|
|
- const msgData = res.content;
|
|
|
- // 设置已经勾选数据
|
|
|
- if (this.InfoPointList && this.InfoPointList.length) {
|
|
|
- msgData.map((item) => {
|
|
|
- item.checked = false;
|
|
|
- this.InfoPointList.forEach((a) => {
|
|
|
- if (a.id == item.id) {
|
|
|
- item.checked = true;
|
|
|
- }
|
|
|
- });
|
|
|
- return item;
|
|
|
- });
|
|
|
- } else {
|
|
|
- msgData.map((item) => {
|
|
|
- item.checked = false;
|
|
|
- return item;
|
|
|
- });
|
|
|
- }
|
|
|
- // 生成二级树
|
|
|
- msgData.forEach((item) => {
|
|
|
- const itemTag = item.secondTag ? item.secondTag : item.firstTag ? item.firstTag : "--";
|
|
|
- if (arr.length) {
|
|
|
- let index = -1;
|
|
|
- arr.forEach((aItem) => {
|
|
|
- if (aItem.tag == itemTag) {
|
|
|
- index = 1;
|
|
|
- aItem.children.push(item);
|
|
|
- aItem.number++;
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- if (index == -1) {
|
|
|
- const tag = item.secondTag ? item.secondTag : item.firstTag ? item.firstTag : "--";
|
|
|
- const tagName = item.secondName ? item.secondName : item.firstName ? item.firstName : "--";
|
|
|
- let obj = {
|
|
|
- tagName: tagName,
|
|
|
- tag: tag,
|
|
|
- children: [item],
|
|
|
- number: 1,
|
|
|
- showChildren: true,
|
|
|
- };
|
|
|
- arr.push(obj);
|
|
|
- }
|
|
|
- } else {
|
|
|
- const tag = item.secondTag ? item.secondTag : item.firstTag ? item.firstTag : "--";
|
|
|
- const tagName = item.secondName ? item.secondName : item.firstName ? item.firstName : "--";
|
|
|
- let obj = {
|
|
|
- tagName: tagName,
|
|
|
- tag: tag,
|
|
|
- children: [],
|
|
|
- number: 1,
|
|
|
- showChildren: true,
|
|
|
- };
|
|
|
- obj.children.push(item);
|
|
|
- arr.push(obj);
|
|
|
- }
|
|
|
- });
|
|
|
- this.msgData = arr;
|
|
|
- this.$loading.close(this.local);
|
|
|
- })
|
|
|
- .catch((err) => {
|
|
|
- console.log("接口报错", err);
|
|
|
- this.$loading.close(this.local);
|
|
|
- });
|
|
|
- },
|
|
|
- Width(val) {
|
|
|
- this.width = val;
|
|
|
- },
|
|
|
- Height(val) {
|
|
|
- this.height = val;
|
|
|
- },
|
|
|
- AnotherMsg(val) {
|
|
|
- this.anotherMsg = val;
|
|
|
- },
|
|
|
- }
|
|
|
+ watch: {},
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="less" scoped>
|
|
|
-ul,
|
|
|
-li,
|
|
|
-p {
|
|
|
- margin: 0;
|
|
|
- padding: 0;
|
|
|
- list-style-type: none;
|
|
|
-}
|
|
|
#equip_pro {
|
|
|
.title {
|
|
|
height: 40px;
|
|
|
line-height: 40px;
|
|
|
color: #000000;
|
|
|
- background: #F8F9FA;
|
|
|
+ background: #f8f9fa;
|
|
|
font-size: 14px;
|
|
|
padding-left: 12px;
|
|
|
box-sizing: border-box;
|
|
|
}
|
|
|
+ .box-title {
|
|
|
+ font-size: 12px;
|
|
|
+ color: #646a73;
|
|
|
+ padding: 12px 0 8px 0;
|
|
|
+ font-weight: 600;
|
|
|
+ }
|
|
|
+ .box-padding {
|
|
|
+ padding: 0 12px 12px;
|
|
|
+ }
|
|
|
+ .box-border-bottom {
|
|
|
+ border-bottom: 1px solid #e4e5e7;
|
|
|
+ }
|
|
|
/deep/ .el-tabs__item {
|
|
|
- padding: 0 20px!important;
|
|
|
+ padding: 0 20px !important;
|
|
|
+ }
|
|
|
+ /deep/ .el-input__inner {
|
|
|
+ padding: 0 6px;
|
|
|
}
|
|
|
.equip-info-box {
|
|
|
- padding: 0 12px 12px;
|
|
|
- border-bottom: 1px solid #E4E5E7;
|
|
|
.equip-info-item {
|
|
|
margin-bottom: 8px;
|
|
|
.equip-info-title {
|
|
|
- color: #8D9399;
|
|
|
+ color: #8d9399;
|
|
|
+ margin-bottom: 5px;
|
|
|
}
|
|
|
.equip-info-value {
|
|
|
- color: #1F2429;
|
|
|
+ cursor: pointer;
|
|
|
+ overflow: hidden;
|
|
|
+ white-space: nowrap;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 600;
|
|
|
+ font-family: MicrosoftYaHei;
|
|
|
+ color: #1f2429;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
.property {
|
|
|
+ font-size: 12px;
|
|
|
.base-property {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
- justify-content: space-around;
|
|
|
- }
|
|
|
- .base-property-left {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
justify-content: flex-start;
|
|
|
- padding-left: 12px;
|
|
|
- padding-top: 12px;
|
|
|
- box-sizing: border-box;
|
|
|
- }
|
|
|
- .imgUpdate {
|
|
|
- border-top: 1px solid #e4e5e7;
|
|
|
- width: 100%;
|
|
|
- margin-bottom: 16px;
|
|
|
- padding: 0 12px 0 12px;
|
|
|
- box-sizing: border-box;
|
|
|
- .img-tit {
|
|
|
- margin: 12px 0 12px 0;
|
|
|
- color: #646a73;
|
|
|
- font-size: 12px;
|
|
|
+ margin-bottom: 14px;
|
|
|
+ .base-property-item {
|
|
|
+ padding-right: 12px;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- .msgPoint-box {
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- padding: 0 12px 0 12px;
|
|
|
- box-sizing: border-box;
|
|
|
- .msgPoint-list {
|
|
|
- margin-top: 20px;
|
|
|
- height: 100%;
|
|
|
- overflow-y: scroll;
|
|
|
- .type-list {
|
|
|
- .type-title {
|
|
|
- cursor: pointer;
|
|
|
- margin-bottom: 10px;
|
|
|
- span {
|
|
|
- margin-left: 12px;
|
|
|
- }
|
|
|
- }
|
|
|
- ul {
|
|
|
- width: 100%;
|
|
|
- padding-left: 28px;
|
|
|
- li {
|
|
|
- display: flex;
|
|
|
- height: 40px;
|
|
|
- align-items: center;
|
|
|
- justify-content: flex-start;
|
|
|
- cursor: pointer;
|
|
|
- p {
|
|
|
- margin-left: 12px;
|
|
|
- }
|
|
|
- &:hover {
|
|
|
- background: #f5f6f7;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- .msgPoint-list-press {
|
|
|
- margin-top: 12px;
|
|
|
- overflow-y: scroll;
|
|
|
- li {
|
|
|
- display: flex;
|
|
|
- height: 40px;
|
|
|
- align-items: center;
|
|
|
- justify-content: flex-start;
|
|
|
- cursor: pointer;
|
|
|
- p {
|
|
|
- margin-left: 12px;
|
|
|
- }
|
|
|
- &:hover {
|
|
|
- background: #f5f6f7;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- .caret-icon {
|
|
|
- animation: nowhirling 0.2s linear forwards;
|
|
|
- }
|
|
|
- .caret-icon-active {
|
|
|
- animation: whirling 0.2s linear forwards;
|
|
|
- }
|
|
|
- @keyframes whirling {
|
|
|
- 0% {
|
|
|
- transform: rotate(-90deg);
|
|
|
- -ms-transform: rotate(-90deg); /* Internet Explorer */
|
|
|
- -moz-transform: rotate(-90deg); /* Firefox */
|
|
|
- -webkit-transform: rotate(-90deg); /* Safari 和 Chrome */
|
|
|
- -o-transform: rotate(-90deg); /* Opera */
|
|
|
- }
|
|
|
- 100% {
|
|
|
- transform: rotate(0deg);
|
|
|
- -ms-transform: rotate(0deg); /* Internet Explorer */
|
|
|
- -moz-transform: rotate(0deg); /* Firefox */
|
|
|
- -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
|
|
|
- -o-transform: rotate(0deg); /* Opera */
|
|
|
- }
|
|
|
- }
|
|
|
- @keyframes nowhirling {
|
|
|
- 0% {
|
|
|
- transform: rotate(0deg);
|
|
|
- -ms-transform: rotate(0deg); /* Internet Explorer */
|
|
|
- -moz-transform: rotate(0deg); /* Firefox */
|
|
|
- -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
|
|
|
- -o-transform: rotate(0deg); /* Opera */
|
|
|
- }
|
|
|
- 100% {
|
|
|
- transform: rotate(-90deg);
|
|
|
- -ms-transform: rotate(-90deg); /* Internet Explorer */
|
|
|
- -moz-transform: rotate(-90deg); /* Firefox */
|
|
|
- -webkit-transform: rotate(-90deg); /* Safari 和 Chrome */
|
|
|
- -o-transform: rotate(-90deg); /* Opera */
|
|
|
- }
|
|
|
- }
|
|
|
}
|
|
|
</style>
|