تمام! إذا كنت تبغى صندوق أكواد (HTML/CSS/JS) داخل مدونة بلوجر يحتوي على:
صندوق اكواد اتش ام ال داخل بلوجر مع زر النسخ والتحميل والمسح
✅ عرض منسق للكود
📋 زر نسخ
⬇️ زر تحميل
🗑️ زر مسح المحتوى
فإليك سكريبت متكامل يمكن إضافته لأي تدوينة في بلوجر، ويعمل بدون إضافات خارجية.
.code-box {
position: relative;
background: #272822;
color: #f8f8f2;
border-radius: 10px;
padding: 15px;
margin: 20px auto;
font-family: monospace;
direction: ltr;
overflow: auto;
}
.code-box textarea {
width: 100%;
height: 250px;
background: transparent;
border: none;
color: #f8f8f2;
resize: none;
font-size: 14px;
outline: none;
}
.code-buttons {
display: flex;
justify-content: flex-end;
gap: 10px;
margin-top: 10px;
}
.code-buttons button {
padding: 8px 12px;
background-color: #007BFF;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
transition: 0.3s;
}
.code-buttons button:hover {
background-color: #0056b3;
}
function copyCode() {
const code = document.getElementById(“myCode”);
code.select();
document.execCommand(“copy”);
alert(“تم نسخ الكود!”);
}
function downloadCode() {
const code = document.getElementById(“myCode”).value;
const blob = new Blob(, { type: “text/plain” });
const link = document.createElement(“a”);
link.href = URL.createObjectURL(blob);
link.download = “code.html”;
link.click();
}
function clearCode() {
if (confirm(“هل أنت متأكد من مسح الكود؟”)) {
document.getElementById(“myCode”).value = “”;
}
}
صندوق أكواد مع زر النسخ والتحميل والمسح
function previewTemplate() {
window.open(“https://shms4m.blogspot.com/2025/04/html.html”, “PreviewWindow”, “width=1000,height=700,resizable=yes”);
}
.videoWrapper {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
padding-top: 25px;
height: 0;
}
.videoWrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}


أضف تعليق