JunyTony Editor - A Fun and Colorful Text Editor
About this app
JunyTony Editor is a fun and colorful text editor that allows you to write and format text in a creative way.
JunyTony Editor - A Fun and Colorful Text Editor JunyTony Editor
Related apps
Put this on your site
Source
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>JunyTony Editor - A Fun and Colorful Text Editor</title>
<meta name="description" content="JunyTony Editor is a fun and colorful text editor that allows you to write and format text in a creative way.">
<meta name="keywords" content="text editor, JunyTony, fun, colorful, creative">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.
// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {
// Function to handle text formatting
function formatText(action) {
var textarea = document.getElementById("editor");
var start = textarea.selectionStart;
var end = textarea.selectionEnd;
var selectedText = textarea.value.substring(start, end);
var newText = "";
switch(action) {
case "bold":
newText = "<b>" + selectedText + "</b>";
break;
case "italic":
newText = "<i>" + selectedText + "</i>";
break;
case "underline":
newText = "<u>" + selectedText + "</u>";
break;
case "strikethrough":
newText = "<s>" + selectedText + "</s>";
break;
case "highlight":
newText = "<span style='background-color: yellow;'>" + selectedText + "</span>";
break;
}
var updatedText = textarea.value.substring(0, start) + newText + textarea.value.substring(end);
textarea.value = updatedText;
}
// Event listeners for formatting buttons
document.getElementById("btn-bold").addEventListener("click", function() {
formatText("bold");
});
document.getElementById("btn-italic").addEventListener("click", function() {
formatText("italic");
});
document.getElementById("btn-underline").addEventListener("click", function() {
formatText("underline");
});
document.getElementById("btn-strikethrough").addEventListener("click", function() {
formatText("strikethrough");
});
document.getElementById("btn-highlight").addEventListener("click", function() {
formatText("highlight");
});
});
} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>
<style>
/* App CSS Goes Here */
body {
font-family: 'Roboto', sans-serif;
background-color: #f5f5f5;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.btn-group {
margin-bottom: 10px;
}
.editor {
width: 100%;
min-height: 200px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #fff;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>JunyTony Editor</h1>
<div class="btn-group">
<button id="btn-bold" class="btn btn-primary" title="Bold"><i class="fa fa-bold"></i></button>
<button id="btn-italic" class="btn btn-primary" title="Italic"><i class="fa fa-italic"></i></button>
<button id="btn-underline" class="btn btn-primary" title="Underline"><i class="fa fa-underline"></i></button>
<button id="btn-strikethrough" class="btn btn-primary" title="Strikethrough"><i class="fa fa-strikethrough"></i></button>
<button id="btn-highlight" class="btn btn-warning" title="Highlight"><i class="fa fa-pencil"></i></button>
</div>
<textarea id="editor" class="editor" placeholder="Start typing..."></textarea>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!