Profile image concepts

Developer
Size
4,152 Kb
Views
12,144

How do I make an profile image concepts?

Just trying out some different profile image designs for an up-coming project.PS: Need some other faces, post your gravatar img url in the comments ;). What is a profile image concepts? How do you make a profile image concepts? This script and codes were developed by Tbleckert on 16 October 2022, Sunday.

Profile image concepts Previews

Profile image concepts - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Profile image concepts</title> <script src="https://s.codepen.io/assets/libs/modernizr.js" type="text/javascript"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <link rel="stylesheet" href="css/style.css">
</head>
<body> <section class="profiles">	<div class="profile"> <img src="http://www.gravatar.com/avatar/ef34270d27d84c2f9440bc613ec651be.jpg?s=100">	</div>	<div class="profile square"> <img src="http://www.gravatar.com/avatar/ef34270d27d84c2f9440bc613ec651be.jpg?s=100">	</div>	<div class="profile lifted"> <img src="http://www.gravatar.com/avatar/ef34270d27d84c2f9440bc613ec651be.jpg?s=100">	</div>	<div class="profile lifted hover"> <img src="http://www.gravatar.com/avatar/ef34270d27d84c2f9440bc613ec651be.jpg?s=100"> <span></span>	</div>	<div class="profile circle"> <img src="http://www.gravatar.com/avatar/ef34270d27d84c2f9440bc613ec651be.jpg?s=100"> <span></span>	</div>	<div class="profile square rotated"> <img src="http://www.gravatar.com/avatar/ef34270d27d84c2f9440bc613ec651be.jpg?s=100"> <span></span>	</div>	<div class="profile weird-shape"> <img src="http://www.gravatar.com/avatar/ef34270d27d84c2f9440bc613ec651be.jpg?s=100"> <span></span>	</div>
</section> <script src='http://ajax.googleapis.com/ajax/libs/mootools/1.4.5/mootools-yui-compressed.js'></script> <script src="js/index.js"></script>
</body>
</html>

Profile image concepts - Script Codes CSS Codes

/* Preview Styling */
body { background: #f4f2f2;
}
body > .profiles { padding: 0 40px 40px 0; text-align: center; font-size: 0; letter-spacing: -1px;
}
body > .profiles > .profile { display: inline-block; vertical-align: top; margin-left: 40px; margin-top: 40px;
}
/* Proile styling */
.profile { width: 100px; height: 100px; border-radius: 50%; padding: 10px; overflow: hidden; background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IiIgcj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIxJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjZWRlZGVkIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PC9yYWRpYWxHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g'); background-size: 100%; background-image: -moz-radial-gradient(center, ellipse cover, #ffffff 1%, #ededed 50%, #ffffff 100%); background-image: -webkit-radial-gradient(center, ellipse cover, #ffffff 1%, #ededed 50%, #ffffff 100%); background-image: radial-gradient(ellipse cover at center, #ffffff 1%, #ededed 50%, #ffffff 100%); box-shadow: inset 0 3px 2px rgba(0, 0, 0, 0.2); position: relative;
}
.profile::before { content: ""; width: 50%; height: 120%; background: rgba(255, 255, 255, 0.2); position: absolute; top: -15px; left: -5px; -moz-transform: rotate(15deg); -ms-transform: rotate(15deg); -webkit-transform: rotate(15deg); transform: rotate(15deg);
}
.profile img { display: block; border-radius: 50%;
}
.profile.square { padding: 0; border-radius: 5px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.profile.square img { border-radius: 5px;
}
.profile.square.rotated { -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -webkit-transform: rotate(45deg); transform: rotate(45deg); width: 70px; height: 70px; top: 14px;
}
.profile.square.rotated img { -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -webkit-transform: rotate(-45deg); transform: rotate(-45deg); position: relative; top: -15px; left: -12px;
}
.profile.lifted { padding: 0; border: 5px solid #fff; box-shadow: 0 0 1px rgba(0, 0, 0, 0.3); overflow: visible;
}
.profile.lifted.hover { top: 10px; -moz-transition: top 0.3s; -o-transition: top 0.3s; -webkit-transition: top 0.3s; transition: top 0.3s;
}
.profile.lifted.hover::after { display: none;
}
.profile.lifted.hover span { bottom: -10px; width: 40%; left: 30%; -moz-transition: left 0.3s, width 0.3s, bottom 0.3s; -o-transition: left 0.3s, width 0.3s, bottom 0.3s; -webkit-transition: left 0.3s, width 0.3s, bottom 0.3s; transition: left 0.3s, width 0.3s, bottom 0.3s;
}
.profile.lifted.hover:hover { top: 0;
}
.profile.lifted.hover:hover span { bottom: -20px; width: 60%; left: 20%;
}
.profile.lifted::after, .profile.lifted span { content: ""; position: absolute; bottom: -20px; left: 20%; width: 60%; height: 10px; border-radius: 50%; background: rgba(0, 0, 0, 0.1); box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); -moz-transform: rotateX(80deg); -webkit-transform: rotateX(80deg); transform: rotateX(80deg);
}
.profile.circle, .profile.weird-shape { padding: 0; background: none; overflow: visible; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.profile.weird-shape { border-radius: 25% 50% 25% 50%; -moz-transition: border-radius 0.3s; -o-transition: border-radius 0.3s; -webkit-transition: border-radius 0.3s; transition: border-radius 0.3s; -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -webkit-transform: rotate(-45deg); transform: rotate(-45deg); overflow: hidden; width: 80px; height: 80px; top: 8px;
}
.profile.weird-shape img { border-radius: 0; -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -webkit-transform: rotate(45deg); transform: rotate(45deg); position: relative; left: -10px; top: -10px;
}
.profile.weird-shape:hover { border-radius: 50% 25% 50% 25%;
}

Profile image concepts - Script Codes JS Codes

(function() {
}).call(this);
Profile image concepts - Script Codes
Profile image concepts - Script Codes
Home Page Home
Developer Tbleckert
Username tbleckert
Uploaded October 16, 2022
Rating 3.5
Size 4,152 Kb
Views 12,144
Do you need developer help for Profile image concepts?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Tbleckert (tbleckert) Script Codes
Create amazing web content with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!