Vue.js v-bind:style pseudo element :: after contetn icon

时间:2018-05-31 13:53:17

标签: html5 css3 vue.js bootstrap-4

我有问题。我有一个Bootstrap Vue ProgressBar。我需要添加到班级" .progress-bar"伪元素::带有contetn图标后(来自FontAwsome)。我也应该是动态的。因为我已经在ProgressBar中实现了步骤(从0 tp 100开始)并且我想要,当我点击时,这个图标将与ProgressBar行一起使用。

<b-progress v-bind:style="styleProgressBar" :value="counter"  :max="max"></b-progress>

 export default {
        components:{
            'navbar':navbar
        },
        name: "myPage",
        data() {
            return {
                counter: 0,
                max: 100,
                step:1,
            }
        },
        methods:{
            prev() {
                this.step--;
            },
            next() {
                this.step++;
                if (this.counter < 100) {
                    this.counter += 34;
                }
            }
        }
    }

我也看到了这一点:https://vuejs.org/v2/guide/class-and-style.html

<div v-bind:style="styleObject"></div>

data: {
  styleObject: {
    color: 'red',
    fontSize: '13px'
  }
}

但我仍然无法理解如何为我的情况做这件事。有人可以帮助我吗?

2 个答案:

答案 0 :(得分:3)

假设您有一个父组件:

<div id="parent">
  <ChildComponent id="child"> // Possibly from another library?
</div>

// renders ->

<div id="parent">
   <div id="child">
     <div id="child-component-item">
        ::after
     </div>
   </div>
</div>

挑战在于为#child-component:after选择器创建绑定。

我们可以使用CSS vars通过一些CSS来“进入”子组件来解决这个问题。请注意,如果样式为::v-deep,则可能必须使用scoped

parent-component.js

<div id="parent-component" :style="{'--bgColor': bgColor}">
   <ChildComponent>
</div>

<script>
  export default {
    data() {
      return {
        bgColor: 'red'
      }
    }
  }
</script>

<style>
   #child-component:after {
      background-color: var(--bgColor)
   }
</style>

答案 1 :(得分:-1)

您似乎想在进度条后面添加一个图标。

如果是这样,请查看以下演示,它使用一个范围模拟图标,然后绑定left以移动图标。

Vue.config.productionTip = false
app = new Vue({
  el: "#app",
  data: {
    counter: 0,
    max: 100,
    intervalID: null
  },
  methods: {
    runTask: function () {      
      clearInterval(this.intervalID)
      this.counter = 0
      this.intervalID = setInterval(() => {
        this.counter = (this.counter+7)%this.max
      }, 1000)
    }
  }
})
.badge {
  background-color:green;
  border: 1px solid black;
  padding: 2px;
  transition: 1s;
}
<script src="https://unpkg.com/vue@2.5.16/dist/vue.js"></script>
<link type="text/css" rel="stylesheet" href="//unpkg.com/bootstrap/dist/css/bootstrap.min.css"/>
<link type="text/css" rel="stylesheet" href="//unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue.css"/>

<script src="//unpkg.com/babel-polyfill@latest/dist/polyfill.min.js"></script>
<script src="//unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue.js"></script>
<div id="app">
  <button @click="runTask()">Run</button>
  <b-progress class="mt-1" :max="max" show-value>
     <b-progress-bar :value="counter" variant="success">
        <span class="badge" style="position:absolute;" :style="{'left':counter*100/max + '%'}" v-show="counter > 0">x</span>
     </b-progress-bar>
  </b-progress>
</div>