HTML, CSS 및 JavaScript를 사용하여 운영 체제 감지
11509 단어 beginnerscsswebdevjavascript
1단계: Fontawesome CDN 가져오기
HTML
<head>
태그에서 멋진 글꼴 CDN을 가져옵니다. fontawesome은 웹사이트의 아이콘에 사용되는 라이브러리입니다.<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
crossorigin="anonymous" />
2단계: HTML 코드
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
crossorigin="anonymous" />
<title>Detect operating system using javascript - @code.scientist x @codingtorque</title>
</head>
<body>
<div class="center">
<p>
<div class="container">
<h3>Detect Operating System using JavaScript</h3>
<p>Please click button to display OS</p>
<button onclick="osname()" class="checkOSBtn">Check OS</button>
<p id="osname"></p>
</div>
</p>
</div>
</body>
</html>
지금까지 출력
3단계: CSS 코드
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
body {
display: flex;
font-family: poppins;
justify-content: center;
align-items: center;
background-color: black;
color: white;
height: 600px;
}
.container {
padding: 40px;
border: 2px solid deepskyblue;
border-radius: 10px;
}
#text {
display: none;
color: red
}
input {
font-family: poppins;
width: 200px;
height: 30px;
transition: 0.3s;
border-radius: 5px;
padding: 0 5px;
border: none;
outline: none;
}
.checkOSBtn {
padding: 10px 25px;
border-radius: 10px;
background-color: deepskyblue;
color: white;
font-size: 18px;
cursor: pointer;
}
지금까지 출력
5단계: JavaScript 코드
HTMLDocument.prototype.e = document.getElementById;
var displayosname = document.e("osname");
var Name = "Not known";
if (navigator.appVersion.indexOf("Win") != -1) Name =
"Windows Operating System";
if (navigator.appVersion.indexOf("Mac") != -1) Name =
"Mac Operating System";
if (navigator.appVersion.indexOf("X11") != -1) Name =
"UNIX Operating System";
if (navigator.appVersion.indexOf("Linux") != -1) Name =
"Linux Operating System";
function osname() {
displayosname.innerHTML = Name;
}
Reference
이 문제에 관하여(HTML, CSS 및 JavaScript를 사용하여 운영 체제 감지), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/piyushpatil1243/detect-operating-system-using-html-css-and-javascript-40ak텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)