搜尋

首頁  >  問答  >  主體

控制 CodeMirror:修改文字區域佔位符的樣式

我在基於 Vuejs 的 Web 應用程式中的文字區域中使用版本 5.65.7 的 CodeMirror 插件,一切正常,沒有任何問題。我想將佔位符添加到我的文字區域,因此我已將相應的佔位符文件添加到我的應用程式中,並且可以在我的文字區域中看到佔位符。

我想更改佔位符的字體顏色並將其居中對齊,因此我嘗試對 codemirror 樣式進行一些修改,但由於某種原因它根本不起作用。您能告訴我如何更改 CodeMirror 控制的文字區域的字體顏色和居中佔位符嗎?

我在這裡查看了一個類似的問題:佔位字體顏色」並嘗試執行相同的操作,但由於某種原因它不起作用。

我根據我的實際應用程式創建了一個範例專案來演示 CodeSandBox 中的問題。

我嘗試查看開發工具並嘗試過,但它沒有按預期工作。有人可以讓我知道我做錯了什麼並提供一些解決方法嗎?

以下是 CodeSandBox 中也提供的程式碼範例:

<template>
  <div class="container">
    <div class="row">
      <div class="col-md-5 offset-md-1 mt-5 mr-2 mb-2 pt-2">
        <textarea
          id="jsonEvents"
          ref="jsonEvents"
          v-model="jsonEvents"
          class="form-control"
          placeholder="Document in JSON format"
          spellcheck="false"
          data-gramm="false"
        />
      </div>

      <div class="col-md-5 offset-md-1 mt-5 mr-2 mb-2 pt-2">
        <textarea
          id="xmlEvents"
          ref="xmlEvents"
          v-model="xmlEvents"
          class="form-control"
          placeholder="Document in XML format"
          spellcheck="false"
          data-gramm="false"
        />
      </div>
    </div>
  </div>
</template>

<script>
let CodeMirror = null;

if (typeof window !== "undefined" && typeof window.navigator !== "undefined") {
  CodeMirror = require("codemirror");
  require("codemirror/mode/xml/xml.js");
  require("codemirror/mode/javascript/javascript.js");
  require("codemirror/lib/codemirror.css");
  require("codemirror/addon/lint/lint.js");
  require("codemirror/addon/lint/lint.css");
  require("codemirror/addon/lint/javascript-lint.js");
  require("codemirror/addon/hint/javascript-hint.js");
  require("codemirror/addon/display/placeholder.js");
}

export default {
  name: "Converter",
  components: {},
  data() {
    return {
      xmlEvents: "",
      jsonEvents: "",
      xmlEditor: null,
      jsonEditor: null,
    };
  },
  mounted() {
    // Make the XML textarea CodeMirror
    this.xmlEditor = CodeMirror.fromTextArea(this.$refs.xmlEvents, {
      mode: "application/xml",
      beautify: { initialBeautify: true, autoBeautify: true },
      lineNumbers: true,
      indentWithTabs: true,
      autofocus: true,
      tabSize: 2,
      gutters: ["CodeMirror-lint-markers"],
      lint: true,
      autoCloseBrackets: true,
      autoCloseTags: true,
      styleActiveLine: true,
      styleActiveSelected: true,
    });

    // Set the height for the XML CodeMirror
    this.xmlEditor.setSize(null, "75vh");

    // Make the JSON textarea CodeMirror
    this.jsonEditor = CodeMirror.fromTextArea(this.$refs.jsonEvents, {
      mode: "applicaton/ld+json",
      beautify: { initialBeautify: true, autoBeautify: true },
      lineNumbers: true,
      indentWithTabs: true,
      autofocus: true,
      tabSize: 2,
      gutters: ["CodeMirror-lint-markers"],
      autoCloseBrackets: true,
      autoCloseTags: true,
      styleActiveLine: true,
      styleActiveSelected: true,
    });

    // Set the height for the JSON CodeMirror
    this.jsonEditor.setSize(null, "75vh");

    // Add the border for all the CodeMirror textarea
    for (const s of document.getElementsByClassName("CodeMirror")) {
      s.style.border = "1px solid black";
    }
  },
};
</script>

<style>
textarea {
  height: 75vh;
  white-space: nowrap;
  resize: both;
  border: 1px solid black;
}

.cm-editor .cm-placeholder {
  color: red !important;
  text-align: center;
  line-height: 200px;
}

.CodeMirror-editor pre.CodeMirror-placeholder {
  color: red !important;
  text-align: center;
  line-height: 200px;
}

.CodeMirror-editor .CodeMirror-placeholder {
  color: red !important;
  text-align: center;
  line-height: 200px;
}
</style>

P粉021708275P粉021708275272 天前419

全部回覆(2)我來回復

  • P粉734486718

    P粉7344867182024-03-29 15:54:03

    不知何故,我無法在不登入的情況下使用您的codesandbox, 但您可以嘗試使用偽類,如下所示:

    textarea::placeholder {
      color: red; 
    }

    請參閱此文件

    回覆
    0
  • P粉638343995

    P粉6383439952024-03-29 13:55:51

    如果可能,可以使用 Javascript 來實現此目的 -

    let placeholder_el = document.querySelectorAll('pre.CodeMirror-placeholder')[0];
    placeholder_el.style['color'] = 'red';
    placeholder_el.style['text-align'] =  'center';
    placeholder_el.style['line-height'] =  '200px';

    回覆
    0
  • 取消回覆