样式修改
This commit is contained in:
parent
462f39826c
commit
15f77487ae
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.liangjunhua
|
* @Author: hisense.liangjunhua
|
||||||
* @Date: 2022-06-19 10:16:10
|
* @Date: 2022-06-19 10:16:10
|
||||||
* @LastEditors: hisense.liangjunhua
|
* @LastEditors: hisense.liangjunhua
|
||||||
* @LastEditTime: 2022-06-19 17:25:32
|
* @LastEditTime: 2022-06-19 17:52:19
|
||||||
* @Description: 告诉大家这是什么
|
* @Description: 告诉大家这是什么
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
@ -277,6 +277,11 @@
|
||||||
background: rgba(0, 108, 188, 0.1);
|
background: rgba(0, 108, 188, 0.1);
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
border: 1px solid rgba(0, 108, 188, 0.7);
|
border: 1px solid rgba(0, 108, 188, 0.7);
|
||||||
|
text-decoration: none;
|
||||||
|
outline: none;
|
||||||
|
-webkit-transition: all 100ms ease-out;
|
||||||
|
-moz-transition: all 100ms ease-out;
|
||||||
|
transition: all 100ms ease-out;
|
||||||
.top {
|
.top {
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
background: url(~@/assets/capabilityCloud/top_bg.png) no-repeat;
|
background: url(~@/assets/capabilityCloud/top_bg.png) no-repeat;
|
||||||
|
@ -302,14 +307,31 @@
|
||||||
);
|
);
|
||||||
margin-top: 0.14rem;
|
margin-top: 0.14rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
.img {
|
.img {
|
||||||
width: 0.66rem;
|
width: 0.66rem;
|
||||||
height: 0.66rem;
|
height: 0.66rem;
|
||||||
|
margin-left: 0.26rem;
|
||||||
margin-right: 0.26rem;
|
margin-right: 0.26rem;
|
||||||
|
text-decoration: none;
|
||||||
|
outline: none;
|
||||||
|
-webkit-transition: all 800ms ease-out;
|
||||||
|
-moz-transition: all 800ms ease-out;
|
||||||
|
transition: all 800ms ease-out;
|
||||||
|
}
|
||||||
|
.img:hover {
|
||||||
|
width: 0.7rem;
|
||||||
|
height: 0.7rem;
|
||||||
|
-webkit-transform: rotateY(180deg);
|
||||||
|
-moz-transform: rotateY(180deg);
|
||||||
|
transform: rotateY(180deg);
|
||||||
|
-webkit-transition-delay: 0.2s;
|
||||||
|
-moz-transition-delay: 0.2s;
|
||||||
|
transition-delay: 0.2s;
|
||||||
}
|
}
|
||||||
.content {
|
.content {
|
||||||
|
width: 1.5rem;
|
||||||
.name {
|
.name {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
@ -330,7 +352,6 @@
|
||||||
.item:nth-of-type(2) .img {
|
.item:nth-of-type(2) .img {
|
||||||
background: url('~@/assets/capabilityCloud/jszyys.png') no-repeat;
|
background: url('~@/assets/capabilityCloud/jszyys.png') no-repeat;
|
||||||
background-size: 100% 100%;
|
background-size: 100% 100%;
|
||||||
margin-left: 0.2rem;
|
|
||||||
}
|
}
|
||||||
.item:nth-of-type(3) .img {
|
.item:nth-of-type(3) .img {
|
||||||
background: url('~@/assets/capabilityCloud/tyyys.png') no-repeat;
|
background: url('~@/assets/capabilityCloud/tyyys.png') no-repeat;
|
||||||
|
@ -381,4 +402,25 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.application-resources:hover {
|
||||||
|
border: 2px solid;
|
||||||
|
animation: turn 5s linear infinite;
|
||||||
|
}
|
||||||
|
@keyframes turn {
|
||||||
|
0% {
|
||||||
|
border-image: linear-gradient(to right, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
25% {
|
||||||
|
border-image: linear-gradient(to bottom, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
border-image: linear-gradient(to left, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
75% {
|
||||||
|
border-image: linear-gradient(to top, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
border-image: linear-gradient(to right, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.liangjunhua
|
* @Author: hisense.liangjunhua
|
||||||
* @Date: 2022-06-19 10:15:33
|
* @Date: 2022-06-19 10:15:33
|
||||||
* @LastEditors: hisense.liangjunhua
|
* @LastEditors: hisense.liangjunhua
|
||||||
* @LastEditTime: 2022-06-19 10:17:22
|
* @LastEditTime: 2022-06-19 18:04:28
|
||||||
* @Description: 能力云图-组件服务
|
* @Description: 能力云图-组件服务
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
@ -249,6 +249,11 @@
|
||||||
background: rgba(0, 108, 188, 0.1);
|
background: rgba(0, 108, 188, 0.1);
|
||||||
border: 0.02rem rgba(0, 108, 188, 0.7) solid;
|
border: 0.02rem rgba(0, 108, 188, 0.7) solid;
|
||||||
border-radius: 0.03rem;
|
border-radius: 0.03rem;
|
||||||
|
text-decoration: none;
|
||||||
|
outline: none;
|
||||||
|
-webkit-transition: all 100ms ease-out;
|
||||||
|
-moz-transition: all 100ms ease-out;
|
||||||
|
transition: all 100ms ease-out;
|
||||||
.component-services-top {
|
.component-services-top {
|
||||||
width: 7.84rem;
|
width: 7.84rem;
|
||||||
height: 0.44rem;
|
height: 0.44rem;
|
||||||
|
@ -468,4 +473,25 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.component-services:hover {
|
||||||
|
border: 2px solid;
|
||||||
|
animation: turn 5s linear infinite;
|
||||||
|
}
|
||||||
|
@keyframes turn {
|
||||||
|
0% {
|
||||||
|
border-image: linear-gradient(to right, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
25% {
|
||||||
|
border-image: linear-gradient(to bottom, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
border-image: linear-gradient(to left, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
75% {
|
||||||
|
border-image: linear-gradient(to top, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
border-image: linear-gradient(to right, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.liangjunhua
|
* @Author: hisense.liangjunhua
|
||||||
* @Date: 2022-06-19 10:15:33
|
* @Date: 2022-06-19 10:15:33
|
||||||
* @LastEditors: hisense.liangjunhua
|
* @LastEditors: hisense.liangjunhua
|
||||||
* @LastEditTime: 2022-06-19 10:18:16
|
* @LastEditTime: 2022-06-19 18:08:39
|
||||||
* @Description: 告诉大家这是什么
|
* @Description: 告诉大家这是什么
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
@ -157,6 +157,11 @@
|
||||||
border-radius: 0.02rem;
|
border-radius: 0.02rem;
|
||||||
border: 0.01rem solid rgba(0, 108, 188, 0.7);
|
border: 0.01rem solid rgba(0, 108, 188, 0.7);
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
text-decoration: none;
|
||||||
|
outline: none;
|
||||||
|
-webkit-transition: all 100ms ease-out;
|
||||||
|
-moz-transition: all 100ms ease-out;
|
||||||
|
transition: all 100ms ease-out;
|
||||||
.resources-top {
|
.resources-top {
|
||||||
height: 0.6rem;
|
height: 0.6rem;
|
||||||
background: url('~@/assets/capabilityCloud/resources-title.png') no-repeat;
|
background: url('~@/assets/capabilityCloud/resources-title.png') no-repeat;
|
||||||
|
@ -288,4 +293,25 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.data-resources:hover {
|
||||||
|
border: 2px solid;
|
||||||
|
animation: turn 5s linear infinite;
|
||||||
|
}
|
||||||
|
@keyframes turn {
|
||||||
|
0% {
|
||||||
|
border-image: linear-gradient(to right, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
25% {
|
||||||
|
border-image: linear-gradient(to bottom, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
border-image: linear-gradient(to left, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
75% {
|
||||||
|
border-image: linear-gradient(to top, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
border-image: linear-gradient(to right, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.liangjunhua
|
* @Author: hisense.liangjunhua
|
||||||
* @Date: 2022-06-19 10:15:33
|
* @Date: 2022-06-19 10:15:33
|
||||||
* @LastEditors: hisense.liangjunhua
|
* @LastEditors: hisense.liangjunhua
|
||||||
* @LastEditTime: 2022-06-19 10:17:47
|
* @LastEditTime: 2022-06-19 18:00:19
|
||||||
* @Description: 告诉大家这是什么
|
* @Description: 告诉大家这是什么
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
@ -16,7 +16,10 @@
|
||||||
v-for="(item, index) in dataList"
|
v-for="(item, index) in dataList"
|
||||||
:key="index"
|
:key="index"
|
||||||
>
|
>
|
||||||
<div class="num-class" :style="`background:url(${item.img}) no-repeat`">
|
<div
|
||||||
|
class="num-class"
|
||||||
|
:style="`background:url(${item.img}) no-repeat;background-position:top left;background-size:40%`"
|
||||||
|
>
|
||||||
<div>{{ item.title }}</div>
|
<div>{{ item.title }}</div>
|
||||||
<div>{{ item.snum }}</div>
|
<div>{{ item.snum }}</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -81,6 +84,11 @@
|
||||||
border-radius: 0.03rem;
|
border-radius: 0.03rem;
|
||||||
padding: 0.2rem;
|
padding: 0.2rem;
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
|
text-decoration: none;
|
||||||
|
outline: none;
|
||||||
|
-webkit-transition: all 100ms ease-out;
|
||||||
|
-moz-transition: all 100ms ease-out;
|
||||||
|
transition: all 100ms ease-out;
|
||||||
.infrastructure-top {
|
.infrastructure-top {
|
||||||
width: 4.4rem;
|
width: 4.4rem;
|
||||||
height: 0.44rem;
|
height: 0.44rem;
|
||||||
|
@ -109,14 +117,16 @@
|
||||||
padding-left: 0.1rem;
|
padding-left: 0.1rem;
|
||||||
}
|
}
|
||||||
.num-class {
|
.num-class {
|
||||||
width: 1.7rem;
|
width: 1.5rem;
|
||||||
padding-left: 0.1rem;
|
height: 1rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
margin-right: 0.2rem;
|
||||||
& > div:first-child {
|
& > div:first-child {
|
||||||
font-size: 0.18rem;
|
font-size: 0.18rem;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
margin-bottom: 0.1rem;
|
margin-bottom: 0.1rem;
|
||||||
line-height: 0.18rem;
|
line-height: 0.18rem;
|
||||||
|
margin-top: 0.3rem;
|
||||||
}
|
}
|
||||||
& > div:last-child {
|
& > div:last-child {
|
||||||
font-size: 0.36rem;
|
font-size: 0.36rem;
|
||||||
|
@ -156,4 +166,25 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.infrastructure:hover {
|
||||||
|
border: 2px solid;
|
||||||
|
animation: turn 5s linear infinite;
|
||||||
|
}
|
||||||
|
@keyframes turn {
|
||||||
|
0% {
|
||||||
|
border-image: linear-gradient(to right, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
25% {
|
||||||
|
border-image: linear-gradient(to bottom, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
border-image: linear-gradient(to left, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
75% {
|
||||||
|
border-image: linear-gradient(to top, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
border-image: linear-gradient(to right, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.liangjunhua
|
* @Author: hisense.liangjunhua
|
||||||
* @Date: 2022-06-19 10:15:33
|
* @Date: 2022-06-19 10:15:33
|
||||||
* @LastEditors: hisense.liangjunhua
|
* @LastEditors: hisense.liangjunhua
|
||||||
* @LastEditTime: 2022-06-19 10:18:49
|
* @LastEditTime: 2022-06-19 18:10:47
|
||||||
* @Description: 告诉大家这是什么
|
* @Description: 告诉大家这是什么
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
@ -54,6 +54,11 @@
|
||||||
border-radius: 0.02rem;
|
border-radius: 0.02rem;
|
||||||
border: 0.01rem solid rgba(0, 108, 188, 0.7);
|
border: 0.01rem solid rgba(0, 108, 188, 0.7);
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
text-decoration: none;
|
||||||
|
outline: none;
|
||||||
|
-webkit-transition: all 100ms ease-out;
|
||||||
|
-moz-transition: all 100ms ease-out;
|
||||||
|
transition: all 100ms ease-out;
|
||||||
.knowledge-top {
|
.knowledge-top {
|
||||||
height: 0.6rem;
|
height: 0.6rem;
|
||||||
background: url('~@/assets/capabilityCloud/Knowledge-title.png') no-repeat;
|
background: url('~@/assets/capabilityCloud/Knowledge-title.png') no-repeat;
|
||||||
|
@ -90,4 +95,25 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.knowledge-base:hover {
|
||||||
|
border: 2px solid;
|
||||||
|
animation: turn 5s linear infinite;
|
||||||
|
}
|
||||||
|
@keyframes turn {
|
||||||
|
0% {
|
||||||
|
border-image: linear-gradient(to right, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
25% {
|
||||||
|
border-image: linear-gradient(to bottom, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
border-image: linear-gradient(to left, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
75% {
|
||||||
|
border-image: linear-gradient(to top, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
border-image: linear-gradient(to right, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.liangjunhua
|
* @Author: hisense.liangjunhua
|
||||||
* @Date: 2022-06-19 10:15:33
|
* @Date: 2022-06-19 10:15:33
|
||||||
* @LastEditors: hisense.liangjunhua
|
* @LastEditors: hisense.liangjunhua
|
||||||
* @LastEditTime: 2022-06-19 17:30:02
|
* @LastEditTime: 2022-06-19 17:52:04
|
||||||
* @Description: 告诉大家这是什么
|
* @Description: 告诉大家这是什么
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
@ -197,6 +197,11 @@
|
||||||
background: rgba(0, 108, 188, 0.1);
|
background: rgba(0, 108, 188, 0.1);
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
border: 1px solid rgba(0, 108, 188, 0.7);
|
border: 1px solid rgba(0, 108, 188, 0.7);
|
||||||
|
text-decoration: none;
|
||||||
|
outline: none;
|
||||||
|
-webkit-transition: all 100ms ease-out;
|
||||||
|
-moz-transition: all 100ms ease-out;
|
||||||
|
transition: all 100ms ease-out;
|
||||||
.top {
|
.top {
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
background: url(~@/assets/capabilityCloud/top_bg.png) no-repeat;
|
background: url(~@/assets/capabilityCloud/top_bg.png) no-repeat;
|
||||||
|
@ -296,4 +301,25 @@
|
||||||
-webkit-transform: rotate(-360deg);
|
-webkit-transform: rotate(-360deg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.platform-overview:hover {
|
||||||
|
border: 2px solid;
|
||||||
|
animation: turn3 5s linear infinite;
|
||||||
|
}
|
||||||
|
@keyframes turn3 {
|
||||||
|
0% {
|
||||||
|
border-image: linear-gradient(to right, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
25% {
|
||||||
|
border-image: linear-gradient(to bottom, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
border-image: linear-gradient(to left, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
75% {
|
||||||
|
border-image: linear-gradient(to top, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
border-image: linear-gradient(to right, #003194, #00ffea) 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue