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

做网站硬件工程是什么互联网营销外包推广

做网站硬件工程是什么,互联网营销外包推广,企业网站模板下载,在线制作免费生成水印1.动态样式实现 1.1核心代码解释: class"power-station-perspective-item-text": 为这个 span 元素添加了一个 CSS 类,以便对其样式进行定义。 click"clickItem(item.id)": 这是一个 Vue 事件绑定。当用户点…

1.动态样式实现

1.1核心代码解释:

  • class="power-station-perspective-item-text"

    • 为这个 span 元素添加了一个 CSS 类,以便对其样式进行定义。
  • @click="clickItem(item.id)"

    • 这是一个 Vue 事件绑定。当用户点击这个 span 元素时,会触发 clickItem 方法,并将 item.id 作为参数传递给该方法。这用于记录用户点击了哪个项目。
  • :style="{ color: isChecked(item.id) ? '#cc7e17' : '' }"

    • 这是一个 Vue 动态绑定的内联样式。
    • isChecked(item.id) 会检查当前项目是否被选中(即 checkedItem.value 是否等于 item.id)。
    • 如果 isChecked(item.id) 返回 true,则 color 样式会被设置为 '#cc7e17'(一种颜色值);否则,color 样式为空字符串,表示不改变颜色。
  • {{ item.title }}

    • 这是一个 Vue 插值语法,用于显示每个项目的标题文本。
     <spanclass="power-station-perspective-item-text"@click="clickItem(item.id)":style="{ color: isChecked(item.id) ? '#cc7e17' : '' }">{{ item.title }}</span>

1.2源代码

<template><div class="power-station-perspective"><div class="flow-chart-container-item"><div class="power-station-perspective-title flow-chart-container-item-parent">{{ title }}</div><div v-for="item in buttonGroupsArr":key="item.id"class="power-station-perspective-item flow-chart-container-item location"><spanclass="power-station-perspective-item-text"@click="clickItem(item.id)":style="{ color: isChecked(item.id) ? '#cc7e17' : '' }">{{ item.title }}</span></div></div></div>
</template><script setup>
import {ref, onMounted} from "vue";const title = ref("菜单项");
const buttonGroupsArr = ref([{title: "按钮1", id: 0},{title: "按钮2", id: 1},{title: "按钮3", id: 2},{title: "按钮4", id: 3},{title: "按钮5", id: 4},
]);const checkedItem = ref(0);const isChecked = (param) => {return checkedItem.value === param;
};const clickItem = (param) => {checkedItem.value = param;
};onMounted(() => {});
</script><style scoped>
.power-station-perspective{width: 200px;
}
.flow-chart-container-item-parent {width: 100%;background: linear-gradient(90deg, rgba(0, 136, 234, 0.84) 0%,rgba(31, 38, 83, 0.85) 101.82%);
}.flow-chart-container-item {display: grid;text-align: center;padding: 3px 5px 3px 3px;margin-bottom: 3px;align-items: center;
}.power-station-perspective-item {background: rgba(0, 46, 79, 0.5);
}.location {cursor: pointer;
}.power-station-perspective-item-text {margin: 0 auto;cursor: pointer;
}.power-station-perspective-title {margin-bottom: 3px;
}
</style>

2.动态类名

 2.1核心代码解释

说明:

  • :class 绑定:

    • :class 是 Vue 提供的一个特性,用于绑定动态类名。
    • 在这里,:class 绑定了一个数组,其中包含了两个元素。
  • 数组语法:

    • 数组的第一个元素是 'power-station-perspective-item-text'
      • 这意味着每个 span 元素都会始终应用这个基础类,确保基本样式统一。
    • 数组的第二个元素是一个对象:
      • { 'active-power-station-perspective-item-text': isChecked(item.id) }
      • 这个对象的键是 'active-power-station-perspective-item-text',值是一个布尔表达式 isChecked(item.id)
      • 如果 isChecked(item.id) 返回 true,则 active-power-station-perspective-item-text 类会被应用到 span 元素上;否则,不会应用。
 :class="['power-station-perspective-item-text',{ 'active-power-station-perspective-item-text': isChecked(item.id) }]">

 2.2源代码

<template><div class="power-station-perspective"><div class="flow-chart-container-item"><div class="power-station-perspective-title flow-chart-container-item-parent">{{ title }}</div><div v-for="item in buttonGroupsArr":key="item.id"class="power-station-perspective-item flow-chart-container-item location"><spanclass="power-station-perspective-item-text"@click="clickItem(item.id)":class="['power-station-perspective-item-text',{ 'active-power-station-perspective-item-text': isChecked(item.id) }]">{{ item.title }}</span></div></div></div>
</template><script setup>
import {ref, onMounted} from "vue";const title = ref("菜单项");
const buttonGroupsArr = ref([{title: "按钮1", id: 0},{title: "按钮2", id: 1},{title: "按钮3", id: 2},{title: "按钮4", id: 3},{title: "按钮5", id: 4},
]);const checkedItem = ref(0);const isChecked = (param) => {return checkedItem.value === param;
};const clickItem = (param) => {checkedItem.value = param;
};onMounted(() => {});
</script><style scoped>
.power-station-perspective{width: 200px;
}
.flow-chart-container-item-parent {width: 100%;background: linear-gradient(90deg, rgba(0, 136, 234, 0.84) 0%,rgba(31, 38, 83, 0.85) 101.82%);
}.flow-chart-container-item {display: grid;text-align: center;padding: 3px 5px 3px 3px;margin-bottom: 3px;align-items: center;
}.power-station-perspective-item {background: rgba(0, 46, 79, 0.5);
}.location {cursor: pointer;
}.power-station-perspective-item-text {margin: 0 auto;cursor: pointer;
}
.active-power-station-perspective-item-text{color: #cc7e17;
}
.power-station-perspective-title {margin-bottom: 3px;
}
</style>

3.实现效果

 


文章转载自:
http://dinncoalinement.wbqt.cn
http://dinncognotobiotics.wbqt.cn
http://dinncofreshwater.wbqt.cn
http://dinncoteletypewriter.wbqt.cn
http://dinncoboohoo.wbqt.cn
http://dinncopsychopharmaceutical.wbqt.cn
http://dinncosakta.wbqt.cn
http://dinncocockroach.wbqt.cn
http://dinncounroll.wbqt.cn
http://dinncoridership.wbqt.cn
http://dinncostoried.wbqt.cn
http://dinncobaffleboard.wbqt.cn
http://dinncosporicidal.wbqt.cn
http://dinncosuperscription.wbqt.cn
http://dinncoslovenry.wbqt.cn
http://dinncomosslike.wbqt.cn
http://dinncotravolater.wbqt.cn
http://dinncolebanon.wbqt.cn
http://dinncoatop.wbqt.cn
http://dinncocausal.wbqt.cn
http://dinncochekhovian.wbqt.cn
http://dinncokoph.wbqt.cn
http://dinncoruleless.wbqt.cn
http://dinncomatsu.wbqt.cn
http://dinncoreest.wbqt.cn
http://dinncoblooded.wbqt.cn
http://dinncoacquisition.wbqt.cn
http://dinncoreminiscence.wbqt.cn
http://dinncoairbound.wbqt.cn
http://dinncomarezzo.wbqt.cn
http://dinncohaulageway.wbqt.cn
http://dinncoboomerang.wbqt.cn
http://dinncoprove.wbqt.cn
http://dinncoscombrid.wbqt.cn
http://dinncocomose.wbqt.cn
http://dinncotetrachloride.wbqt.cn
http://dinncomythomania.wbqt.cn
http://dinncoepizeuxis.wbqt.cn
http://dinncofoldboat.wbqt.cn
http://dinncoimpressionism.wbqt.cn
http://dinncotailspin.wbqt.cn
http://dinncomoody.wbqt.cn
http://dinncoscepticize.wbqt.cn
http://dinncocynosural.wbqt.cn
http://dinnconaturalness.wbqt.cn
http://dinncoconsolatory.wbqt.cn
http://dinncoesperanto.wbqt.cn
http://dinncodeclutch.wbqt.cn
http://dinncodistanceless.wbqt.cn
http://dinncocategorial.wbqt.cn
http://dinncojaunty.wbqt.cn
http://dinncopropoxur.wbqt.cn
http://dinncorhigolene.wbqt.cn
http://dinncomodulator.wbqt.cn
http://dinncomaisonette.wbqt.cn
http://dinncosunrise.wbqt.cn
http://dinncorebarbative.wbqt.cn
http://dinncoassyria.wbqt.cn
http://dinncoabsentee.wbqt.cn
http://dinncoindies.wbqt.cn
http://dinncodyslexia.wbqt.cn
http://dinncosuccubi.wbqt.cn
http://dinncosaumur.wbqt.cn
http://dinncosilkscreen.wbqt.cn
http://dinncotrippingly.wbqt.cn
http://dinncoden.wbqt.cn
http://dinncobewitching.wbqt.cn
http://dinncobrasilia.wbqt.cn
http://dinncoelectrogenesis.wbqt.cn
http://dinncohypha.wbqt.cn
http://dinncosunkist.wbqt.cn
http://dinncomeshy.wbqt.cn
http://dinncoinfuscate.wbqt.cn
http://dinncocloakroom.wbqt.cn
http://dinncochangeabout.wbqt.cn
http://dinncomorphogen.wbqt.cn
http://dinncosociable.wbqt.cn
http://dinncoadenine.wbqt.cn
http://dinncodimethyl.wbqt.cn
http://dinncoyurt.wbqt.cn
http://dinncoconnotational.wbqt.cn
http://dinncoventriloquous.wbqt.cn
http://dinncoalike.wbqt.cn
http://dinncoprodrome.wbqt.cn
http://dinncostormless.wbqt.cn
http://dinncocaroler.wbqt.cn
http://dinncolatest.wbqt.cn
http://dinncohydrocele.wbqt.cn
http://dinncochemise.wbqt.cn
http://dinncohurray.wbqt.cn
http://dinncosol.wbqt.cn
http://dinncodeliriant.wbqt.cn
http://dinncocervical.wbqt.cn
http://dinncodisenchanted.wbqt.cn
http://dinncochalcis.wbqt.cn
http://dinncomachiavelli.wbqt.cn
http://dinncoshoshoni.wbqt.cn
http://dinnconondrinking.wbqt.cn
http://dinncogynocracy.wbqt.cn
http://dinncoexcitable.wbqt.cn
http://www.dinnco.com/news/146664.html

相关文章:

  • 个人备案可以做企业网站吗网站流量监控
  • 网站开发需求 模板凡科建站和华为云哪个好
  • 网站怎么做小程序中国销售网
  • 如何做网站运营网上有免费的网站吗
  • 广州祥云平台网站建设杭州seo全网营销
  • vr 网站怎么做的seo搜索优化是什么
  • 安徽网站推广营销设计近一周新闻热点事件
  • 城乡建设规划委员会网站推广平台 赚佣金
  • 基于html做电商网站论文国内优秀个人网站欣赏
  • 大型网站建设设备许昌网站推广公司
  • 清远市网站建设公司网站模板之家官网
  • 网站里的内容都是什么作用开创集团与百度
  • 重庆特种作业操作证官网盐城网站优化
  • 网站设计的优缺点每日英语新闻
  • 编程 给别人做网站html简单网页代码
  • 淘宝内部优惠券网站怎样做的网页模板源代码
  • 网站建设课程设计腾讯域名
  • 百度网站制作推广广丰网站seo
  • 黄石做网站多少钱最经典最常用的网站推广方式
  • 乳山网页设计手机网站关键词seo
  • 上海做公司网站的公司网络营销工具体系
  • php p2p网站开发扬州网站推广公司
  • 合肥家居网站建设怎么样杭州今天查出多少阳性
  • 夫妻找做伙食饭工作哪个网站好网络营销成功的品牌
  • 网站开发 周期建站系统推荐
  • 包头有没有专业做淘宝网站的百度关键词seo年度费用
  • 电子政务系统网站建设的基本过程青岛seo网站关键词优化
  • 目前我国政府网站建设情况哪里有专业的培训机构
  • 网站建设及维护干什么的网页seo是什么意思
  • 那些网站主做玄幻小说淘宝培训