برمجة موقع ملاحظات kanوا نحضر اكل
10344 단어 javascripthtmlcss
html 및 css 및 javascript
다블 볼더
html نبدا ب
نكتب اكواد الصفحة اساسية و نربطه مع فايلات الاخرى
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ملاحظات</title>
<link rel="stylesheet" href="./style.css" />
<script src="./script.js" defer></script>
</head>
<body></body>
</html>
بعدين نضيف اساس الطبق
<div class="parent-conteiner">
<button class="save-btn">حفظ</button>
<input type="text" class="input" placeholder="ملاحظاتك" dir="rtl" />
<div class="notes"></div>
</div>
css 설명
body,
html {
margin: 0;
height: 100%;
background-color: rgb(240, 240, 240);
/* كود لجعل كل ايتمس في المنتصف */
display: flex;
align-items: center;
justify-content: center;
}
.parent-conteiner {
background-color: rgb(38, 111, 156);
padding: 20px;
border-radius: 5px;
}
.input {
padding: 5px;
border-radius: 5px;
background-color: rgb(57, 142, 194);
border: none;
color: white;
font-size: 20px;
}
input::placeholder {
color: white;
}
.save-btn {
padding: 5px 10px;
border-radius: 5px;
background-color: rgb(57, 142, 194);
border: none;
color: white;
font-size: 20px;
margin-top: 10px;
}
ها جان مقبلات الطبق الاساسي لازم وي اشوية JAVASKRIBTET
const input = document.querySelector(".input");
const button = document.querySelector(".save-btn");
const notes = document.querySelector(".notes");
button.addEventListener("click", function () {
const note = input.value;
notes.innerHTML += `<p class='note'>${note}</p>`;
input.value = "";
});
css 지원
.note {
font-size: 20px;
color: white;
background-color: rgb(57, 142, 194);
padding: 5px;
border-radius: 5px;
}
정보
بالعافية 😅
Reference
이 문제에 관하여(برمجة موقع ملاحظات kanوا نحضر اكل), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/omar_dev/brmj-mwq-mlhzt-knw-nhdr-kl-2afh텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)