It's a Mailto generator taking advantage of MDL.
Last active
September 5, 2018 11:17
-
-
Save Richienb/b0319e9253f3afe20f977cdd5aff4ba4 to your computer and use it in GitHub Desktop.
Mailto For MDL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Mailto for MDL</title> | |
</head> | |
<body> | |
<section class="demo-card-square mdl-card mdl-shadow--2dp"> | |
<div class="mdl-card__title mdl-card--expand"> | |
<h2 class="mdl-card__title-text">Contact Me</h2> | |
</div> | |
<div class="mdl-card__supporting-text"> | |
<!-- Subject Field --> | |
<form action="#"> | |
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label"> | |
<input class="mdl-textfield__input" type="text" id="subject" required> | |
<label class="mdl-textfield__label" for="subject">Subject</label> | |
</div> | |
<!-- Message Field --> | |
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label"> | |
<input class="mdl-textfield__input" type="text" id="body" required> | |
<label class="mdl-textfield__label" for="body">Message</label> | |
</div> | |
<!-- Submit Button --> | |
<input onclick="buildString(); " type="submit" value="Send" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent"> | |
</input> | |
</form> | |
</div> | |
</section> | |
</body> | |
<footer> | |
<!-- Initialise MDL --> | |
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/material-design-lite@1/dist/material.indigo-red.min.css"> | |
<script async defer src="https://cdn.jsdelivr.net/gh/google/[email protected]/material.min.js"></script> | |
<link href="https://fonts.googleapis.com/icon?family=Roboto" rel="stylesheet"> | |
<!-- Custom CSS--> | |
<style> | |
.demo-card-square.mdl-card { | |
width: 320px; | |
height: 320px; | |
} | |
.demo-card-square>.mdl-card__title { | |
color: #fff; | |
background: url('') bottom right 15% no-repeat #f44336; | |
} | |
html { | |
font-family: "Roboto", sans-serif; | |
} | |
</style> | |
<!-- Custom JS --> | |
<script async defer> | |
function buildString() { | |
var email = "[email protected]", | |
to = email, | |
subject = encodeURIComponent(document.getElementById("subject").value), | |
body = encodeURIComponent(document.getElementById("body").value), | |
message = ""; | |
email.className = "not"; | |
message = "mailto:" + to; | |
subject || body ? (message += "?") : false; | |
subject ? (message += "subject=" + subject) : false; | |
subject && body ? (message += "&body=" + body) : false; | |
!subject && body ? (message += "body=" + body) : false; | |
window.open(message); | |
} | |
</script> | |
</footer> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment