每个字母的文本区域(输入)中的随机字距调整



我对此很陌生,但是在花了一周时间试图找到答案之后,我想我会尝试直接询问。我正在使用javascript和jquery构建一个文本编辑器。我有一个文本区域(内容可编辑(,一个样式表和一个js脚本。我想要的是,对于按下的每个字母,字距调整将是随机的。我通过一个简单的函数实现了这个,但我不希望所有文本区域文本都有这个字距调整,只按下最后一个字母等等,所以这种事情将是这样的结果:

模拟

到目前为止,我的js文件中有:

$(document).ready(
function() {
$('#textarea').keypress(function(){     
var KerningRandom =  Math.floor((Math.random()*90)-20);
$(this).css('letter-spacing',KerningRandom);

}(;

这是我的 jsfiddle 实际上在 jsfiddle 中不起作用,我不明白为什么它在本地工作正常......?

谢谢!

你不能在CSS中寻址单个字符(等等字形(。只有 ::第一个字母。

您拥有的选项:

  1. 将所有字符转换为单个范围。我认为这太过分了。
  2. 使用<canvas>呈现文本,从而从头开始实现文本流布局。

你可以在那里找到你想要实现的目标的工作(我分叉了你的(。

https://jsfiddle.net/1gesLgsa/2/

完整代码 :

    //Code from https://stackoverflow.com/questions/1125292/how-to-move-cursor-to-end-of-contenteditable-entity

    //Namespace management idea from http://enterprisejquery.com/2010/10/how-good-c-habits-can-encourage-bad-javascript-habits-part-1/
    (function( cursorManager ) {
    //From: http://www.w3.org/TR/html-markup/syntax.html#syntax-elements
    var voidNodeTags = ['AREA', 'BASE', 'BR', 'COL', 'EMBED', 'HR', 'IMG', 'INPUT', 'KEYGEN', 'LINK', 'MENUITEM', 'META', 'PARAM', 'SOURCE', 'TRACK', 'WBR', 'BASEFONT', 'BGSOUND', 'FRAME', 'ISINDEX'];
    //From: https://stackoverflow.com/questions/237104/array-containsobj-in-javascript
    Array.prototype.contains = function(obj) {
        var i = this.length;
        while (i--) {
            if (this[i] === obj) {
                return true;
            }
        }
        return false;
    }
    //Basic idea from: https://stackoverflow.com/questions/19790442/test-if-an-element-can-contain-text
    function canContainText(node) {
        if(node.nodeType == 1) { //is an element node
            return !voidNodeTags.contains(node.nodeName);
        } else { //is not an element node
            return false;
        }
    };
    function getLastChildElement(el){
        var lc = el.lastChild;
        while(lc && lc.nodeType != 1) {
            if(lc.previousSibling)
                lc = lc.previousSibling;
            else
                break;
        }
        return lc;
    }
    //Based on Nico Burns's answer
    cursorManager.setEndOfContenteditable = function(contentEditableElement)
    {
        while(getLastChildElement(contentEditableElement) &&
              canContainText(getLastChildElement(contentEditableElement))) {
            contentEditableElement = getLastChildElement(contentEditableElement);
        }
        var range,selection;
        if(document.createRange)//Firefox, Chrome, Opera, Safari, IE 9+
        {    
            range = document.createRange();//Create a range (a range is a like the selection but invisible)
            range.selectNodeContents(contentEditableElement);//Select the entire contents of the element with the range
            range.collapse(false);//collapse the range to the end point. false means collapse to end rather than the start
            selection = window.getSelection();//get the selection object (allows you to change selection)
            selection.removeAllRanges();//remove any selections already made
            selection.addRange(range);//make the range you have just created the visible selection
        }
        else if(document.selection)//IE 8 and lower
        { 
            range = document.body.createTextRange();//Create a range (a range is a like the selection but invisible)
            range.moveToElementText(contentEditableElement);//Select the entire contents of the element with the range
            range.collapse(false);//collapse the range to the end point. false means collapse to end rather than the start
            range.select();//Select the range (make it the visible selection
        }
    }
}( window.cursorManager = window.cursorManager || {}));    

// ACTUAL CODE MADE FOR THIS ANSWER
    $('#textarea').keypress(function(event) {
    event.preventDefault();
      var KerningRandom = Math.floor((Math.random() * 90));
      if ($("#last").length > 0)
      {
      var previousLast = $("#textarea #last").html();
      $("#textarea #last").remove();
      }
      else
      var previousLast = "";
      $("#textarea").html($("#textarea").html().slice() + previousLast + "<span id='last'>" + String.fromCharCode(event.which) + "</span>")
      $("#last").css('margin-left', KerningRandom + "px");
var editableDiv = document.getElementById("textarea");
cursorManager.setEndOfContenteditable(editableDiv)
    });
var editableDiv = document.getElementById("textarea");
cursorManager.setEndOfContenteditable(editableDiv)

逐点解释:

     $('#textarea').keypress(function(event) {
    event.preventDefault();
      var KerningRandom = Math.floor((Math.random() * 90));
      if ($("#last").length > 0)
      {
      var previousLast = $("#textarea #last").html();
      $("#textarea #last").remove();
      }
      else
      var previousLast = "";
      $("#textarea").html($("#textarea").html() + previousLast + "<span id='last'>" + String.fromCharCode(event.which) + "</span>")
      $("#last").css('margin-left', KerningRandom + "px");
      var editableDiv = document.getElementById("textarea");
      cursorManager.setEndOfContenteditable(editableDiv)
    });

event.preventDefault()阻止在按键时添加字母。然后,我们计算左边距值,保存我们之前拥有的最后一个字母并删除包含最后一个字母的范围,因为它不再是最后一个字母。我们附加 上一个最后一个字母 ,以及具有随机左边距(以模拟字距调整(和按下键的值(感谢如何找出按下了什么字符键?到实际内容。

之后,我们需要手动移动文本区域末尾的 carret,否则它会停留在开头。

为此,我使用了来自如何将光标移动到内容可编辑实体的末尾,以便进行解释。

最新更新