如何在输入占位符中创建打字轮播?

时间:2017-08-10 15:08:25

标签: javascript jquery css placeholder

我希望我的输入占位符有一个打字轮播,类似于this

我希望#myInput占位符

上有dynamic writing
      <div class="form-group">
        <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
      <center><label class="heypal-label"><span id="heypal">HeyPal<span class="gray-lighter">.me/</span></span></label>
        <input id="myInput" type="text" class="form-control conference-input">
        <button type="submit" class="btn btn-lg btn-danger btn-autosize">Go!</button></center>
      </div>
  </div>

有关如何完成此操作的任何想法?感谢

4 个答案:

答案 0 :(得分:1)

您只需要使用输入元素和文本创建一个新的TxtRotate对象。

new TxtRotate(element, textArray, waitTimeMs);

然后,要在占位符中获取文本,只需在元素上设置占位符文本。

this.el.placeholder = this.txt;

&#13;
&#13;
var TxtRotate = function(el, toRotate, period) {
  this.toRotate = toRotate;
  this.el = el;
  this.loopNum = 0;
  this.period = parseInt(period, 10) || 2000;
  this.txt = '';
  this.tick();
  this.isDeleting = false;
};

TxtRotate.prototype.tick = function() {
  var i = this.loopNum % this.toRotate.length;
  var fullTxt = this.toRotate[i];

  if (this.isDeleting) {
    this.txt = fullTxt.substring(0, this.txt.length - 1);
  } else {
    this.txt = fullTxt.substring(0, this.txt.length + 1);
  }

  this.el.placeholder = this.txt;

  var that = this;
  var delta = 300 - Math.random() * 100;

  if (this.isDeleting) {
    delta /= 2;
  }

  if (!this.isDeleting && this.txt === fullTxt) {
    delta = this.period;
    this.isDeleting = true;
  } else if (this.isDeleting && this.txt === '') {
    this.isDeleting = false;
    this.loopNum++;
    delta = 500;
  }

  setTimeout(function() {
    that.tick();
  }, delta);
};

window.onload = function() {
  new TxtRotate(document.getElementById('myInput'), ["PariMaria", "GentianAnnas", "LinneaSteliana", "UlisesCristobal", "SimonidesLonny"], 2000);
};
&#13;
<div class="form-group">
  <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
    <center><label class="heypal-label"><span id="heypal">HeyPal<span class="gray-lighter">.me/</span></span></label>
      <input id="myInput" type="text" class="form-control conference-input">
      <button type="submit" class="btn btn-lg btn-danger btn-autosize">Go!</button></center>
  </div>
</div>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

您链接到的示例使用CSS样式来模仿键入插入符号,因此您无法完全执行此操作,但除此之外您可以使用完全相同的javascript,而不是修改跨度的内部html,您是修改输入的placeholder属性。

let input = document.getElementById("myInput");
input.placeholder = 'my text';

显然,上面是静态设置占位符,但是没有理由不能使用提供的示例用于旋转占位符文本的相同setTimeout刻度策略。

至于插入符号,我只使用'pipe'符号:|。它并不完美,但它足够接近恕我直言。

答案 2 :(得分:0)

你可以试试这个版本

<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Raleway:200,100,400" rel="stylesheet" type="text/css" />
<meta charset="ISO-8859-1">
<title>Insert title here</title>
<script>
var TxtRotate = function(el, toRotate, period) {
      this.toRotate = toRotate;
      this.el = el;
      this.loopNum = 0;
      this.period = parseInt(period, 10) || 2000;
      this.txt = '';
      this.tick();
      this.isDeleting = false;
    };

    TxtRotate.prototype.tick = function() {

      var i = this.loopNum % this.toRotate.length;
      var fullTxt = this.toRotate[i];

      if (this.isDeleting) {
        this.txt = fullTxt.substring(0, this.txt.length - 1);
      } else {
        this.txt = fullTxt.substring(0, this.txt.length + 1);
      }

      this.el.value =this.txt;

      var that = this;
      var delta = 300 - Math.random() * 100;

      if (this.isDeleting) { delta /= 2; }

      if (!this.isDeleting && this.txt === fullTxt) {
        delta = this.period;
        this.isDeleting = true;
      } else if (this.isDeleting && this.txt === '') {
        this.isDeleting = false;
        this.loopNum++;
        delta = 500;
      }

      setTimeout(function() {
        that.tick();
      }, delta);
    };

    window.onload = function() {
        var element = document.getElementById('myInput');
        var toRotate = element.getAttribute('data-rotate');
        var period = element.getAttribute('data-period');
         new TxtRotate(element, JSON.parse(toRotate), period);

      }


</script>
</head>
<body>
    <div class="form-group">
        <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
      <center><label class="heypal-label"><span id="heypal">HeyPal<span class="gray-lighter">.me/</span></span></label>
        <input id="myInput" type="text" class="form-control conference-input"

     data-period="2000"
     data-rotate='[ "nerdy.", "simple.", "pure JS.", "pretty.", "fun!" ]'>
        <button type="submit" class="btn btn-lg btn-danger btn-autosize">Go!</button></center>
      </div>
  </div>

</body>
</html>

答案 3 :(得分:0)

您可以重复使用TxtRotate,修改输入的占位符属性并将插入符号效果添加到文本中。

var TxtRotate = function(el, toRotate, period) {
   this.toRotate = toRotate;
   this.el = el;
   this.loopNum = 0;
   this.period = parseInt(period, 10) || 2000;
   this.txt = '';
   this.tick();
   this.isDeleting = false;
};

TxtRotate.prototype.tick = function() {
var i = this.loopNum % this.toRotate.length;
var fullTxt = this.toRotate[i];

if (this.isDeleting) {
   this.txt = fullTxt.substring(0, this.txt.length - 1);
} else {
   this.txt = fullTxt.substring(0, this.txt.length + 1);
}

this.el.placeholder = this.txt + '|';

var that = this;
var delta = 300 - Math.random() * 100;

if (this.isDeleting) { delta /= 2; }

if (!this.isDeleting && this.txt === fullTxt) {
   delta = this.period;
   this.isDeleting = true;
} else if (this.isDeleting && this.txt === '') {
   this.isDeleting = false;
   this.loopNum++;
   delta = 500;
}

setTimeout(function() {
   that.tick();
  }, delta);
};

window.onload = function() {
   new TxtRotate(document.getElementById('myInput'), [ "nerdy.", "simple.", "pure JS.", "pretty.", "fun!" ], 2000);
};