- 제출된 URL:
- https://p3d.pl/
- 보고서 완료:
링크 · 0개 결과
페이지에서 식별된 외부 링크
JavaScript 변수 · 5개 결과
페이지의 창 개체에 로드된 전역 JavaScript 변수는 함수 외부에서 선언된 변수로, 현재 범위 내에서 코드의 어느 부분에서나 액세스할 수 있습니다
이름 | 유형 |
---|---|
0 | object |
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
loadContent | function |
콘솔 로그 메시지 · 2개 결과
웹 콘솔에 기록된 메시지
유형 | 카테고리 | 로그 |
---|---|---|
error | network |
|
error | network |
|
HTML
페이지의 원시 HTML 본문
<!DOCTYPE html><html lang="pl"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html">
<title>Piotr Cieciora Portfolio 2024</title>
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
font-family: Arial, sans-serif;
overflow: hidden;
}
.navbar {
position: fixed;
top: 0;
width: 100%;
background-color: #333;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
box-sizing: border-box;
z-index: 1000;
}
.navbar a {
font-size: calc(12px + 4 * ((100vw - 120px) / 1000));
color: white;
padding: 5px 10px;
text-decoration: none;
text-transform: uppercase;
display: inline-block;
}
.navbar a:hover {
background-color: #ddd;
color: black;
}
.navbar-title {
font-size: calc(15px + 4 * ((100vw - 190px) / 1000));
font-weight: bold;
text-decoration: none;
text-transform: uppercase;
}
.main {
display: flex;
flex-direction: column;
padding-top: 45px; /* wysokość menu */
height: calc(100% - 45px);
}
.content {
flex: 1;
overflow: hidden;
}
iframe {
width: 100%;
height: 100%;
border: none;
}
@media (min-width: 1400px) {
.navbar a {
font-size: 18px; /* Zmniejszenie czcionki dla bardzo szerokich ekranów */
}
.navbar-title {
font-size: 20px; /* Zmniejszenie czcionki dla bardzo szerokich ekranów */
}
}
</style>
</head>
<body>
<div class="navbar">
<!-- <div class="navbar-title">Piotr Cieciora Portfolio 2024</div> -->
<a href="#" onclick="loadContent('home.html')">Piotr Cieciora Portfolio 2024</a>
<div>
<a href="#" onclick="loadContent('qloc.html')">QLOC</a>
<a href="#" onclick="loadContent('fwh.html')">FWH</a>
<a href="#" onclick="loadContent('ci.html')">CI</a>
<a href="#" onclick="loadContent('prom.html')">Prominence</a>
<a href="#" onclick="loadContent('freelance.html')">Freelance</a>
</div>
</div>
<div class="main">
<div class="content" id="content">
<iframe src="home.html" id="contentFrame"></iframe>
</div>
</div>
<script>
function loadContent(url) {
document.getElementById('contentFrame').src = url;
}
</script>
</body></html>