简体   繁体   English

进度栏文字未显示

[英]progress bar text not showing

This meteor client code tries to set a text in the centre of the progress bar but the text is not showing on the screen though it is showing in the inspection panel. 该流星客户端代码尝试在进度条的中心设置文本,但是该文本虽然在检查面板中显示,但并未显示在屏幕上。 Tried on Chrome and Safari for no avail. 在Chrome和Safari上尝试失败。 Any suggestions how to fix this? 任何建议如何解决此问题? thx 谢谢

lib = (function () {
  return Object.freeze({
    'clickInfo': function () {
        Meteor.setTimeout(function () {
          let bar = document.getElementById('bar');
          bar.style.visibility = 'visible';
          lib.progressBarStart(bar);
        }, 50);

    },
    'progressBarStart': function (bar) {
      if (bar && bar.value < 70) {
        if (Session.get('inProgress')) {
          setTimeout(function () {
            bar = document.getElementById('bar'); 
            lib.progressBarStart(bar);
          }, 1000);
          bar.value += 1;
        }
      } else if (Session.get('inProgress')) {
        bar.innerHTML = 'Result will be emailed'; // <== text failed to show
      }
    }
  });
}());
#bar {
    width: 100%;
    height: 1.5rem;
    visibility: hidden;
    text-align: center;
    color: white;
    -webkit-appearance: none;
    -moz-appearance: none;
}
<progress id="bar" value="0" max="70"></progress>

Use :before pseudo element in CSS to show the text. 在CSS中使用:before伪元素显示文本。 I Hope this helps you 我希望这可以帮助你

progress::before {
  content: 'Result will be emailed';
  position:relative;
  top:5px;
}

helpful fiddle https://jsfiddle.net/96z0gwv7/1/ 有用的小提琴https://jsfiddle.net/96z0gwv7/1/

Jquery: jQuery的:

$('#bar').addClass('done');

Css: CSS:

progress.done::before{
  content: 'Result will be emailed';
  position:relative;
  top:5px;
}

Progress bars are not supposed to show any text. 进度条不应显示任何文本。 I'd recommend to add another element ( <div> for example) and show it in place of (or atop of) progress bar. 我建议添加另一个元素(例如<div> )并将其显示在进度条上(或上方)。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM