gpt4 book ai didi

javascript - 如何更改 ace 编辑器中的背景图像?

转载 作者:太空宇宙 更新时间:2023-11-03 22:42:06 25 4
gpt4 key购买 nike

我在 CSS 中尝试过,但没有用。我还尝试了保存在 我的电脑

.ace_identifier{
background-image : url("https://www.google.com.eg/url?sa=i&rct=j&q=&esrc=s&source=images&cd=&cad=rja&uact=8&ved=0ahUKEwji1duTxbrTAhUEOBQKHamBCvQQjRwIBw&url=https%3A%2F%2Fox-fest.org%2F2017%2F02%2F06%2Fupcoming-workshop-coding-with-morgan-stanley%2F&psig=AFQjCNECub5OZqaxX9R684Gm4HLX-X7Zdw&ust=1493035590367032");
}

.ace_identifier{ 背景图像:url(“https://s-media-cache-ak0.pinimg.com/564x/1c/da/05/1cda057bcd14d46c68e3051dc26f6850.jpg”);

编辑:我尝试了一个有效的 url。同样的问题

最佳答案

如果您将 css 应用于正确的选择器,它应该可以工作,并确保没有规则覆盖它。

<script src=http://ajaxorg.github.io/ace-builds/src-noconflict/ace.js></script>
<script>
var editor = ace.edit()
// set class to editor to use in css,
// could use .ace_editor too, but that
// would match all editors on the page
editor.container.classList.add("myEditor")
editor.setTheme("ace/theme/monokai")
editor.setValue("some text here", -1)
document.body.appendChild(editor.container)
</script>

<style>
.myEditor {
position: fixed;
left: 0; right: 0; bottom: 0; top: 0;
background : url(https://s-media-cache-ak0.pinimg.com/564x/1c/da/05/1cda057bcd14d46c68e3051dc26f6850.jpg);
}
}

</style>

关于javascript - 如何更改 ace 编辑器中的背景图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43570962/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com