Added home, gallery, about, contact pages
This commit is contained in:
parent
44781a8eac
commit
60d12ee1a6
@ -0,0 +1,2 @@
|
||||
# Nancy Pannikkat Official Website
|
||||
Copyright Disclaimer: This Source Code is Copyright © 2022 Nancy Pannikkat. All Rights Reserved.
|
64
about.html
Normal file
64
about.html
Normal file
@ -0,0 +1,64 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<!--
|
||||
Copyright Disclaimer: This Source Code is Copyright (c) 2022 Nancy Pannikkat. All Rights Reserved.
|
||||
-->
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
||||
<title>Nancy Pannikkat</title>
|
||||
<link href="css/general.css" rel="stylesheet" type="text/css" media="all">
|
||||
<!-- <link rel="icon" href="img/icon.ico"> -->
|
||||
|
||||
<meta name="author" content="Nancy Pannikkat">
|
||||
<meta name="copyright" content="This site and its pages are Copyright (c) 2022 Nancy Pannikkat. All Rights Reserved.">
|
||||
<meta name="description" content="The official art gallery showcase of Nancy Pannikkat">
|
||||
<meta name="keywords" content="Nancy Pannikkat, art gallery, buy art online">
|
||||
|
||||
<!-- JavaScript Refs -->
|
||||
|
||||
<style>
|
||||
body {
|
||||
position: relative;
|
||||
background-color: #f2f1ef;
|
||||
color: #0d1117;
|
||||
}
|
||||
</style>
|
||||
<!--For icons, go here: https://iconsvg.xyz/ or https://icomoon.io/app/#/select-->
|
||||
<!-- Compress Images: https://imageresizer.com/image-compressor -->
|
||||
</head>
|
||||
<body>
|
||||
<!--Nav-->
|
||||
<div class="nav-wrapper">
|
||||
<nav class="navBar">
|
||||
<div class="nav-left">
|
||||
<a id="nav-logo-a" href="./">
|
||||
<h1>Nancy Pannikkat</h1>
|
||||
</a>
|
||||
</div>
|
||||
<div id="nav-links-container">
|
||||
<ul id="navList">
|
||||
<li><a class="navlink" onclick="uncheck('check')" href="./gallery.html">Gallery</a></li>
|
||||
<li><a class="navlink current" onclick="uncheck('check')" href="./about.html">About</a></li>
|
||||
<li><a class="navlink" onclick="uncheck('check')" href="./contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<!-- Main -->
|
||||
<main>
|
||||
<div class="about-parent">
|
||||
<div class="about-img">
|
||||
<img src="">
|
||||
</div>
|
||||
<div class="about-desc">
|
||||
Lorem ipsum
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
82
contact.html
Normal file
82
contact.html
Normal file
@ -0,0 +1,82 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<!--
|
||||
Copyright Disclaimer: This Source Code is Copyright (c) 2022 Nancy Pannikkat. All Rights Reserved.
|
||||
-->
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
||||
<title>Nancy Pannikkat</title>
|
||||
<link href="css/general.css" rel="stylesheet" type="text/css" media="all">
|
||||
<!-- <link rel="icon" href="img/icon.ico"> -->
|
||||
|
||||
<meta name="author" content="Nancy Pannikkat">
|
||||
<meta name="copyright" content="This site and its pages are Copyright (c) 2022 Nancy Pannikkat. All Rights Reserved.">
|
||||
<meta name="description" content="The official art gallery showcase of Nancy Pannikkat">
|
||||
<meta name="keywords" content="Nancy Pannikkat, art gallery, buy art online">
|
||||
|
||||
<!-- JavaScript Refs -->
|
||||
<script src="js/jquery-3.6.1.min.js"></script>
|
||||
<script defer src="js/contact.js"></script>
|
||||
<style>
|
||||
body {
|
||||
position: relative;
|
||||
background-color: #f2f1ef;
|
||||
color: #0d1117;
|
||||
}
|
||||
</style>
|
||||
<!--For icons, go here: https://iconsvg.xyz/ or https://icomoon.io/app/#/select-->
|
||||
<!-- Compress Images: https://imageresizer.com/image-compressor -->
|
||||
</head>
|
||||
<body>
|
||||
<!--Nav-->
|
||||
<div class="nav-wrapper">
|
||||
<nav class="navBar">
|
||||
<div class="nav-left">
|
||||
<a id="nav-logo-a" href="./">
|
||||
<h1>Nancy Pannikkat</h1>
|
||||
</a>
|
||||
</div>
|
||||
<div id="nav-links-container">
|
||||
<ul id="navList">
|
||||
<li><a class="navlink" onclick="uncheck('check')" href="./gallery.html">Gallery</a></li>
|
||||
<li><a class="navlink" onclick="uncheck('check')" href="./about.html">About</a></li>
|
||||
<li><a class="navlink current" onclick="uncheck('check')" href="./contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
<main>
|
||||
<section class="contact">
|
||||
<h2 class="topic">Contact Me</h2>
|
||||
<hr class="line">
|
||||
<!-- Src: https://codepen.io/nikhil8krishnan/pen/gaybLK -->
|
||||
<form action="https://formsubmit.co/cdb6b3b7f0aaee18ef710e25aee428d2" class="contact-form" method="POST">
|
||||
<div class="form-single-line">
|
||||
<div class="input-block">
|
||||
<label for="">Name</label>
|
||||
<input type="text" name="Name" class="form-control" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-single-line">
|
||||
<div class="input-block">
|
||||
<label for="">Email</label>
|
||||
<input type="email" name="Email" class="form-control" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-multi-line">
|
||||
<div class="input-block textarea">
|
||||
<label for="">Drop your message here</label>
|
||||
<textarea rows="3" name="Message" class="form-control" required></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-submit-button">
|
||||
<button type="submit" class="square-button">Send</button>
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
350
css/general.css
Normal file
350
css/general.css
Normal file
@ -0,0 +1,350 @@
|
||||
/*
|
||||
Copyright Disclaimer: This Source Code is Copyright (c) 2022 Nancy Pannikkat. All Rights Reserved.
|
||||
*/
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* Nav */
|
||||
.nav-wrapper {
|
||||
height: auto;
|
||||
width: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
position: fixed;
|
||||
flex-wrap: nowrap;
|
||||
background-color: rgba(235, 235, 235, 0.856);
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
nav {
|
||||
max-width: 1000px;
|
||||
min-width: 600px;
|
||||
margin: 5px auto;
|
||||
padding: 17px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
nav * {
|
||||
padding: 0;
|
||||
margin: 0px 5px;
|
||||
list-style: none;
|
||||
box-sizing: border-box;
|
||||
z-index: 100;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.nav-left {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#nav-logo {
|
||||
margin: 5px 0 0;
|
||||
}
|
||||
|
||||
#nav-logo:hover {
|
||||
transform: scale(1.01);
|
||||
transition: 0.5s;
|
||||
}
|
||||
|
||||
#nav-logo-a {
|
||||
position: relative;
|
||||
margin: 0;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
nav ul {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
nav ul li {
|
||||
display: inline-flex;
|
||||
line-height: 30px;
|
||||
margin: 10px 7px;
|
||||
padding: 3px 5px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.navlink {
|
||||
color:rgb(160, 160, 160);
|
||||
font-size: 18px;
|
||||
text-decoration: none;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.navlink.active,a:hover {
|
||||
color: rgba(54, 54, 54, 0.774);
|
||||
transition: .5s;
|
||||
}
|
||||
|
||||
.navlink::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 0.1em;
|
||||
background-color: rgb(97, 97, 97);
|
||||
opacity: 1;
|
||||
transition: opacity 300ms, transform 300ms;
|
||||
transform: scale(0);
|
||||
transform-origin: center;
|
||||
}
|
||||
|
||||
.navlink:hover::after {
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
.navlink.current::after {
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
#nav-links-container {
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
body {
|
||||
padding-top: 100px;
|
||||
}
|
||||
|
||||
.gallery-parent {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
width: auto;
|
||||
padding-top: 20px;
|
||||
max-width: 1300px;
|
||||
|
||||
/* Change later */
|
||||
margin: auto;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.gallery-article {
|
||||
width: auto;
|
||||
height: auto;
|
||||
/* background-color: darkgray; */
|
||||
margin: 10px 50px 50px;
|
||||
}
|
||||
|
||||
.art-thumbnail {
|
||||
width: 250px;
|
||||
height: 250px;
|
||||
background: linear-gradient(rgba(10, 14, 18, 0.2) 50%, rgba(104, 104, 104, 0.37) 60%, rgb(188, 188, 188) 100%);
|
||||
}
|
||||
|
||||
.art-title {
|
||||
font-size: 20px;
|
||||
padding: 5px 0;
|
||||
}
|
||||
|
||||
.art-desc {
|
||||
font-size: 18px;
|
||||
color: darkgray;
|
||||
}
|
||||
|
||||
header {
|
||||
margin: auto;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
background-color: aliceblue;
|
||||
padding: 30px 0;
|
||||
}
|
||||
|
||||
.showcase-parent {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
padding: 0 30px;
|
||||
max-width: 800px;
|
||||
min-width: 300px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.header-text {
|
||||
display: flex;
|
||||
flex-flow: column nowrap;
|
||||
position: relative;
|
||||
padding: 10px 20px;
|
||||
max-width: 700px;
|
||||
min-width: 300px;
|
||||
}
|
||||
|
||||
.header-title {
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
.header-subtitle {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.header-button {
|
||||
width: 120px;
|
||||
margin: 30px auto 0;
|
||||
border-radius: 3px;
|
||||
box-shadow: 1px 1px 2px 2px rgb(201, 201, 201);
|
||||
padding: 10px 20px;
|
||||
background-color: rgb(169, 193, 169) ;
|
||||
}
|
||||
|
||||
.header-link {
|
||||
text-decoration: none;
|
||||
color: unset;
|
||||
}
|
||||
|
||||
.header-thumbnail {
|
||||
height: 300px;
|
||||
width: 300px;
|
||||
background-color: bisque;
|
||||
box-shadow: 0px 3px 5px 5px rgb(201, 201, 201);
|
||||
margin: 20px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.about-parent {
|
||||
display: flex;
|
||||
width: auto;
|
||||
height: auto;
|
||||
margin: 20px auto;
|
||||
max-width: 1000px;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.about-img {
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
background: linear-gradient(rgba(10, 14, 18, 0.2) 50%, rgba(104, 104, 104, 0.37) 60%, rgb(188, 188, 188) 100%);
|
||||
}
|
||||
|
||||
.about-desc {
|
||||
padding: 20px;
|
||||
font-size: 20px;
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
/* Contact */
|
||||
.contact-form {
|
||||
margin-top: 30px;
|
||||
min-width: 300px;
|
||||
width: 40vw;
|
||||
}
|
||||
|
||||
input:-webkit-autofill,
|
||||
input:-webkit-autofill:hover,
|
||||
input:-webkit-autofill:focus,
|
||||
input:-webkit-autofill:active {
|
||||
transition: background-color 5000s ease-in-out 0s;
|
||||
-webkit-text-fill-color: #fff !important;
|
||||
caret-color: #fff;
|
||||
}
|
||||
.contact-form div label {
|
||||
color: black;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.input-block {
|
||||
background-color: #bababa;
|
||||
border-radius: 2px;
|
||||
width: 100%;
|
||||
height: 60px;
|
||||
padding: 25px;
|
||||
position: relative;
|
||||
margin-bottom: 20px;
|
||||
transition: all 0.3s ease-out;
|
||||
color: black;
|
||||
}
|
||||
.input-block.focus {
|
||||
background-color: #d1d6df;
|
||||
transition: 0.5s;
|
||||
}
|
||||
.input-block.textarea {
|
||||
height: auto;
|
||||
font-size: 18px;
|
||||
}
|
||||
.form-control {
|
||||
height: auto;
|
||||
width: 100%;
|
||||
resize: vertical;
|
||||
font-family: "Glacial Indifference";
|
||||
}
|
||||
.input-block label {
|
||||
position: absolute;
|
||||
left: 25px;
|
||||
top: 25px;
|
||||
display: block;
|
||||
margin: 0;
|
||||
font-weight: 300;
|
||||
z-index: 1;
|
||||
color: rgb(199, 199, 199);
|
||||
font-size: 18px;
|
||||
line-height: 10px;
|
||||
}
|
||||
.input-block .form-control {
|
||||
background-color: transparent;
|
||||
padding: 5px;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
box-shadow: none;
|
||||
height: auto;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
font-size: 18px;
|
||||
color: rgb(30, 29, 29);
|
||||
}
|
||||
option {
|
||||
background-color: #d8d8d8;
|
||||
}
|
||||
.input-block .form-control:focus label {
|
||||
top: 0;
|
||||
}
|
||||
.square-button {
|
||||
background-color: rgb(180, 180, 180);
|
||||
color: #060047;
|
||||
font-size: 26px;
|
||||
text-transform: uppercase;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
border-radius: 3px;
|
||||
transition: all 0.3s ease;
|
||||
height: 60px;
|
||||
border: none;
|
||||
width: 30%;
|
||||
}
|
||||
.square-button:hover, .square-button:focus {
|
||||
filter: brightness(0.8);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.contact-wrap {
|
||||
width: 60%;
|
||||
margin: auto;
|
||||
}
|
||||
}
|
||||
|
||||
main {
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
margin: auto;
|
||||
display: flex;
|
||||
padding-top: 30px;
|
||||
}
|
||||
|
||||
.contact {
|
||||
text-align: center;
|
||||
max-width: 1500px;
|
||||
}
|
||||
|
||||
.topic {
|
||||
font-size: 30px;
|
||||
}
|
111
gallery.html
Normal file
111
gallery.html
Normal file
@ -0,0 +1,111 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<!--
|
||||
Copyright Disclaimer: This Source Code is Copyright (c) 2022 Nancy Pannikkat. All Rights Reserved.
|
||||
-->
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
||||
<title>Nancy Pannikkat</title>
|
||||
<link href="css/general.css" rel="stylesheet" type="text/css" media="all">
|
||||
<!-- <link rel="icon" href="img/icon.ico"> -->
|
||||
|
||||
<meta name="author" content="Nancy Pannikkat">
|
||||
<meta name="copyright" content="This site and its pages are Copyright (c) 2022 Nancy Pannikkat. All Rights Reserved.">
|
||||
<meta name="description" content="The official art gallery showcase of Nancy Pannikkat">
|
||||
<meta name="keywords" content="Nancy Pannikkat, art gallery, buy art online">
|
||||
|
||||
<!-- JavaScript Refs -->
|
||||
|
||||
<style>
|
||||
body {
|
||||
position: relative;
|
||||
background-color: #f2f1ef;
|
||||
color: #0d1117;
|
||||
}
|
||||
</style>
|
||||
<!--For icons, go here: https://iconsvg.xyz/ or https://icomoon.io/app/#/select-->
|
||||
<!-- Compress Images: https://imageresizer.com/image-compressor -->
|
||||
</head>
|
||||
<body>
|
||||
<!--Nav-->
|
||||
<div class="nav-wrapper">
|
||||
<nav class="navBar">
|
||||
<div class="nav-left">
|
||||
<a id="nav-logo-a" href="./">
|
||||
<h1>Nancy Pannikkat</h1>
|
||||
</a>
|
||||
</div>
|
||||
<div id="nav-links-container">
|
||||
<ul id="navList">
|
||||
<li><a class="navlink current" onclick="uncheck('check')" href="./gallery.html">Gallery</a></li>
|
||||
<li><a class="navlink" onclick="uncheck('check')" href="./about.html">About</a></li>
|
||||
<li><a class="navlink" onclick="uncheck('check')" href="./contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<!-- Main -->
|
||||
<main>
|
||||
<div class="gallery-parent">
|
||||
<div class="gallery-article">
|
||||
<div class="art-thumbnail"></div>
|
||||
<div class="art-title">Title</div>
|
||||
<hr>
|
||||
<div class="art-desc">Price</div>
|
||||
</div>
|
||||
<div class="gallery-article">
|
||||
<div class="art-thumbnail"></div>
|
||||
<div class="art-title">Title</div>
|
||||
<hr>
|
||||
<div class="art-desc">Price</div>
|
||||
</div>
|
||||
<div class="gallery-article">
|
||||
<div class="art-thumbnail"></div>
|
||||
<div class="art-title">Title</div>
|
||||
<hr>
|
||||
<div class="art-desc">Price</div>
|
||||
</div>
|
||||
<div class="gallery-article">
|
||||
<div class="art-thumbnail"></div>
|
||||
<div class="art-title">Title</div>
|
||||
<hr>
|
||||
<div class="art-desc">Price</div>
|
||||
</div>
|
||||
<div class="gallery-article">
|
||||
<div class="art-thumbnail"></div>
|
||||
<div class="art-title">Title</div>
|
||||
<hr>
|
||||
<div class="art-desc">Price</div>
|
||||
</div>
|
||||
<div class="gallery-article">
|
||||
<div class="art-thumbnail"></div>
|
||||
<div class="art-title">Title</div>
|
||||
<hr>
|
||||
<div class="art-desc">Price</div>
|
||||
</div>
|
||||
<div class="gallery-article">
|
||||
<div class="art-thumbnail"></div>
|
||||
<div class="art-title">Title</div>
|
||||
<hr>
|
||||
<div class="art-desc">Price</div>
|
||||
</div>
|
||||
<div class="gallery-article">
|
||||
<div class="art-thumbnail"></div>
|
||||
<div class="art-title">Title</div>
|
||||
<hr>
|
||||
<div class="art-desc">Price</div>
|
||||
</div>
|
||||
<div class="gallery-article">
|
||||
<div class="art-thumbnail"></div>
|
||||
<div class="art-title">Title</div>
|
||||
<hr>
|
||||
<div class="art-desc">Price</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
68
index.html
Normal file
68
index.html
Normal file
@ -0,0 +1,68 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<!--
|
||||
Copyright Disclaimer: This Source Code is Copyright (c) 2022 Nancy Pannikkat. All Rights Reserved.
|
||||
-->
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
||||
<title>Nancy Pannikkat</title>
|
||||
<link href="css/general.css" rel="stylesheet" type="text/css" media="all">
|
||||
<!-- <link rel="icon" href="img/icon.ico"> -->
|
||||
|
||||
<meta name="author" content="Nancy Pannikkat">
|
||||
<meta name="copyright" content="This site and its pages are Copyright (c) 2022 Nancy Pannikkat. All Rights Reserved.">
|
||||
<meta name="description" content="The official art gallery showcase of Nancy Pannikkat">
|
||||
<meta name="keywords" content="Nancy Pannikkat, art gallery, buy art online">
|
||||
|
||||
<!-- JavaScript Refs -->
|
||||
|
||||
<style>
|
||||
body {
|
||||
position: relative;
|
||||
background-color: #f2f1ef;
|
||||
color: #0d1117;
|
||||
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
|
||||
}
|
||||
</style>
|
||||
<!--For icons, go here: https://iconsvg.xyz/ or https://icomoon.io/app/#/select-->
|
||||
<!-- Compress Images: https://imageresizer.com/image-compressor -->
|
||||
</head>
|
||||
<body>
|
||||
<!--Nav-->
|
||||
<div class="nav-wrapper">
|
||||
<nav class="navBar">
|
||||
<div class="nav-left">
|
||||
<a id="nav-logo-a" href="./">
|
||||
<h1>Nancy Pannikkat</h1>
|
||||
</a>
|
||||
</div>
|
||||
<div id="nav-links-container">
|
||||
<ul id="navList">
|
||||
<li><a class="navlink" onclick="uncheck('check')" href="./gallery.html">Gallery</a></li>
|
||||
<li><a class="navlink" onclick="uncheck('check')" href="./about.html">About</a></li>
|
||||
<li><a class="navlink" onclick="uncheck('check')" href="./contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<!-- Main -->
|
||||
<header>
|
||||
<div class="showcase-parent">
|
||||
<div class="header-text">
|
||||
<span class="header-group">Collection 2022</span>
|
||||
<h1 class="header-title">Title</h1>
|
||||
<h2 class="header-subtitle">modern art</h2>
|
||||
<a class="header-link" href="#"><div class="header-button">Learn More</div></a>
|
||||
</div>
|
||||
<div class="header-thumbnail"></div>
|
||||
</div>
|
||||
</header>
|
||||
<main>
|
||||
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
39
js/contact.js
Normal file
39
js/contact.js
Normal file
@ -0,0 +1,39 @@
|
||||
// Src: https://codepen.io/nikhil8krishnan/pen/gaybLK
|
||||
//material contact form animation
|
||||
$(".contact-form")
|
||||
.find(".form-control")
|
||||
.each(function () {
|
||||
var targetItem = $(this).parent();
|
||||
if ($(this).val()) {
|
||||
$(targetItem).find("label").css({
|
||||
top: "10px",
|
||||
fontSize: "14px"
|
||||
});
|
||||
}
|
||||
});
|
||||
$(".contact-form")
|
||||
.find(".form-control")
|
||||
.focus(function () {
|
||||
$(this).parent(".input-block").addClass("focus");
|
||||
$(this).parent().find("label").animate(
|
||||
{
|
||||
top: "10px",
|
||||
fontSize: "14px"
|
||||
},
|
||||
300
|
||||
);
|
||||
});
|
||||
$(".contact-form")
|
||||
.find(".form-control")
|
||||
.blur(function () {
|
||||
if ($(this).val().length == 0) {
|
||||
$(this).parent(".input-block").removeClass("focus");
|
||||
$(this).parent().find("label").animate(
|
||||
{
|
||||
top: "25px",
|
||||
fontSize: "18px"
|
||||
},
|
||||
300
|
||||
);
|
||||
}
|
||||
});
|
2
js/jquery-3.6.1.min.js
vendored
Normal file
2
js/jquery-3.6.1.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user