1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > 卡片式步骤条样式实现

卡片式步骤条样式实现

时间:2019-08-15 21:54:25

相关推荐

卡片式步骤条样式实现

效果图

实现

<!-- 步骤条 --><div class="flex-box" v-if="showStep"><div :class="['first-step-box', activeIndex == 1 ? 'active-step' : 'inactive-step']">填写商品信息<div class="triangle-right-theme" v-if="activeIndex == 1"></div><div class="triangle-left-white" v-if="activeIndex == 2"></div></div><div class="center-box"></div><div :class="['second-step-box', activeIndex == 2 ? 'active-step' : 'inactive-step']">填写属性及其他<div class="triangle-right-white" v-if="activeIndex == 1"></div><div class="triangle-left-theme" v-if="activeIndex == 2"></div></div></div>

.flex-box {display: flex;height: 48px;margin-bottom: 8px;.first-step-box {flex: 1;height: 48px;line-height: 48px;text-align: center;color: @1D2129;position: relative;border-top-left-radius: 4px;border-bottom-left-radius: 4px;}.second-step-box {flex: 1;height: 48px;line-height: 48px;text-align: center;position: relative;border-top-right-radius: 4px;border-bottom-right-radius: 4px;}.center-box {width: 5px;height: 48px;}.active-step {background-color: @primary-color;color: #fff;}.inactive-step {background-color: #f2f3f5;color: @1D2129;}.triangle-right-theme {width: 0;height: 0;border-top: 24px solid transparent;border-left: 24px solid @primary-color;border-bottom: 24px solid transparent;position: absolute;top: 0;right: -24px;z-index: 100;}.triangle-right-white {width: 0;height: 0;border-top: 24px solid transparent;border-left: 24px solid #fff;border-bottom: 24px solid transparent;position: absolute;top: 0;left: 0;z-index: 90;}.triangle-left-theme {width: 0;height: 0;border: 24px solid @primary-color;border-top: 24px solid transparent;border-left: 24px solid transparent;border-bottom: 24px solid transparent;position: absolute;top: 0;left: -48px;z-index: 100;}.triangle-left-white {width: 0;height: 0;border: 24px solid #fff;border-top: 24px solid transparent;border-left: 24px solid transparent;border-bottom: 24px solid transparent;position: absolute;top: 0;right: 0;z-index: 90;}}

欢迎大家提供更好的方法~

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。