A Pen by Trenton

Developer
Size
4,102 Kb
Views
14,168

How do I make an a pen by trenton?

What is a a pen by trenton? How do you make a a pen by trenton? This script and codes were developed by Trenton on 19 November 2022, Saturday.

A Pen by Trenton Previews

A Pen by Trenton - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>A Pen by Trenton</title> <link href="https://fonts.googleapis.com/css?family=Abril+Fatface" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway:400,700" rel="stylesheet"> <link rel="stylesheet" href="css/style.css">
</head>
<body> <body>
<ul class="portfolio-list"> <a href="#"><span>01</span>CHT Orthodontics</a> <a href="#"><span>02</span>Judy Mac</a> <a href="#"><span>03</span>Dudley Smiles</a> <a href="#"><span>04</span>Webb Orthodontics</a> <a href="#"><span>05</span>Memphis Landscape</a> <a href="#"><span>06</span>Commissary BBQ</a>
</ul>
<div class="menu-content menu-content-one"> <div class="content-wrap"> </div>
</div>
<div class="menu-content menu-content-two"> <div class="content-wrap"> </div>
</div>
<div class="menu-content menu-content-three"> <div class="content-wrap"> </div>
</div>
<div class="menu-content menu-content-four"> <div class="content-wrap"> </div>
</div>
<div class="menu-content menu-content-five"> <div class="content-wrap"> </div>
</div>
<div class="menu-content menu-content-six"> <div class="content-wrap"> </div>
</div>
</body> <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

A Pen by Trenton - Script Codes CSS Codes

body { font-family: "baskerville-urw", serif;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Abril Fatface', cursive;
}
p { font-family: "baskerville-urw", serif; letter-spacing: .5px; font-weight: 400; display: inline-block; margin-right: 20px; line-height: 2;
}
.portfolio-list { position: absolute; left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%); font-size: 24px; z-index: 2; width: 100%; max-width: 800px;
}
.portfolio-list:hover a span { color: white;
}
.portfolio-list a { color: black; font-size: 1.95em; display: block; text-decoration: none; padding: 0 2em; line-height: 2.5em; position: relative; transition: all .15s ease; font-family: 'Abril Fatface', cursive; text-align: center;
}
.portfolio-list a:hover { color: #3CDBC0;
}
.portfolio-list a:hover span { color: black;
}
.portfolio-list a span { font-size: .35em; vertical-align: middle; margin: 0 45px 0 0; font-family: 'Raleway', sans-serif; font-weight: bold; color: #e2e2e2; position: relative; display: inline-block; transition: all .15s ease;
}
.portfolio-list a span:after { content: ""; position: absolute; background: #3CDBC0; font-size: 2.5em; vertical-align: middle; right: -21px; top: 40px; height: 35px; width: 1px; transform: rotate(30deg);
}
.menu-content { display: none; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; z-index: 1;
}
.menu-content:before { content: ""; position: absolute; height: 100%; width: 300%; background: white; top: 90%; left: -140%; transform: rotate(-20deg);
}
.menu-content:after { content: ""; position: absolute; height: 100%; width: 100%; background: #fff; opacity: .35; top: 0; left: 0; z-index: -1;
}
.menu-content .list { text-transform: uppercase; letter-spacing: 5px; font-size: 10px; display: inline-block; font-weight: light;
}
.menu-content .content-wrap { top: 14%; left: -20%; position: relative;
}
.menu-content span { color: yellow; text-decoration: none; text-transform: uppercase; font-size: .7em; letter-spacing: 4px;
}
.menu-content h1 { color: white; font-family: 'Oswald', sans-serif; letter-spacing: 4px; text-transform: uppercase; font-size: 45px;
}
.menu-content p { color: white;
}
.menu-content-one { background: url(http://chtortho.com/wp-content/uploads/2016/10/carrie.jpg); background-size: cover;
}
.menu-content-two { background: url(http://rentalhousememphis.com/wp-content/uploads/2016/11/Screen-Shot-2017-01-16-at-3.56.30-PM.png); background-size: cover;
}
.menu-content-three { background: url(http://www.dudleysmiles.com/wp-content/uploads/2016/07/dudley-team-headers-1.jpg); background-size: cover;
}
.menu-content-four { background: url(http://chattanoogabraces.com/wp-content/uploads/2016/09/webb-family.jpg); background-size: cover;
}
.menu-content-five { background: url(http://memphislandscape.neoncanvas.com/wp-content/uploads/2017/02/about-placeholder.jpg); background-size: cover;
}
.menu-content-six { background: url(http://commissary.neoncanvas.com/wp-content/uploads/2017/02/DSC_0031.jpg); background-size: cover;
}

A Pen by Trenton - Script Codes JS Codes

$(".portfolio-list a:first-of-type").hover(	function () {	$( ".menu-content-one" ).fadeIn( "slow", function() { // Animation complete.	});	},	function () {	$( ".menu-content-one" ).fadeOut( "slow", function() { // Animation complete.	});	}
);
$(".portfolio-list a:nth-child(2)").hover(	function () {	$( ".menu-content-two" ).fadeIn( "slow", function() { // Animation complete.	});	},	function () {	$( ".menu-content-two" ).fadeOut( "slow", function() { // Animation complete.	});	}
);
$(".portfolio-list a:nth-child(3)").hover(	function () {	$( ".menu-content-three" ).fadeIn( "slow", function() { // Animation complete.	});	},	function () {	$( ".menu-content-three" ).fadeOut( "slow", function() { // Animation complete.	});	}
);
$(".portfolio-list a:nth-child(4)").hover(	function () {	$( ".menu-content-four" ).fadeIn( "slow", function() { // Animation complete.	});	},	function () {	$( ".menu-content-four" ).fadeOut( "slow", function() { // Animation complete.	});	}
);
$(".portfolio-list a:nth-child(5)").hover(	function () {	$( ".menu-content-five" ).fadeIn( "slow", function() { // Animation complete.	});	},	function () {	$( ".menu-content-five" ).fadeOut( "slow", function() { // Animation complete.	});	}
);
$(".portfolio-list a:nth-child(6)").hover(	function () {	$( ".menu-content-six" ).fadeIn( "slow", function() { // Animation complete.	});	},	function () {	$( ".menu-content-six" ).fadeOut( "slow", function() { // Animation complete.	});	}
);
A Pen by Trenton - Script Codes
A Pen by Trenton - Script Codes
Home Page Home
Developer Trenton
Username tlelkins2020
Uploaded November 19, 2022
Rating 3
Size 4,102 Kb
Views 14,168
Do you need developer help for A Pen by Trenton?

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!

Trenton (tlelkins2020) Script Codes
Create amazing love letters 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!