Skip to content

A Neumorphic Profile Card created with HTML, CSS, and JavaScript is a visually striking and interactive user interface component that combines the modern aesthetics of neumorphism with the functionality of a profile card.

Notifications You must be signed in to change notification settings

EpicNesh26/Neumorphism-Profile-Card

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Neumorphism-Profile-Card

A Neumorphic Profile Card created with HTML, CSS, and JavaScript is a visually striking and interactive user interface component that combines the modern aesthetics of neumorphism with the functionality of a profile card. Neumorphism, characterized by soft shadows, subtle gradients, and a tactile feel, is seamlessly integrated into the design to create a visually pleasing and engaging user experience.


HTML Structure:

The structure begins with a standard HTML layout, encompassing elements such as a container div to hold the profile card, and nested divs to organize different sections such as the user's avatar, personal information, and social links. Text elements are utilized for displaying the user's name, title, and a brief bio.

<div class="name">EpicNesh</div>
<div class="about">Web Developer & Digital Craftsmen</div>
<div class="social">
<a onclick="discord()" href="" class="discord">
<i class='bx bxl-discord-alt' ></i>
</a>
<a onclick="github()" href="" class="github">
<i class='bx bxl-github' ></i>
</a>
<a onclick="envelope()" href="" class="envelope">
<i class='bx bx-envelope' ></i>
</a>
<a onclick="instagram()" class="insta">
<i class='bx bxl-instagram'></i>
</a>
</div>

CSS Styling:

The CSS file defines the neumorphic styling, incorporating soft shadows, light gradients, and rounded corners. The color palette is carefully chosen to enhance the depth and realism of the design. Subtle hover effects are applied to create an interactive and responsive feel when users interact with the profile card.

.wrapper, .wrapper .imge, .social a, .buttons button{
background: #ecf0f3;
border-radius: 10px;
box-shadow: -3px -3px 7px #ffffff,
3px 3px 5px #ceced1
}
.wrapper{
padding: 30px;
width: 350px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background: #ecf0f3;
border-radius: 10px;
box-shadow: -3px -3px 7px #ffffff,
3px 3px 5px #ceced1
}

JavaScript Interactivity:

JavaScript is employed to enhance interactivity. For instance, a hover effect may trigger additional animations or display more information. In this example, JavaScript is used to redirect a person to specific pages / sites on clicking the different icons .

function discord(){
window.open("https://discord.com/users/1093126786533031997")
}
function github(){
window.open("https://www.github.com/EpicNesh26")
}
function envelope(){
window.open("soninesh2006@gmail.com")
}
function instagram(){
window.open("http://www.instagram.com/soninesh2006")
}

About

A Neumorphic Profile Card created with HTML, CSS, and JavaScript is a visually striking and interactive user interface component that combines the modern aesthetics of neumorphism with the functionality of a profile card.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published