Foundation & CSS : How to make pre-made form into a text area - forms

I am using a pre-made form (Haruki) from https://tympanus.net/Development/TextInputEffects/
JSFiddle is https://jsfiddle.net/kacikw/6b9djm76/#&togetherjs=ERPObvDR7G
I can't figure out how to make the input area into a text area that can have more than 1 line (for a comment section).
Like I don't know how to modify the pre-made form, I tried changing the classes in the html and css to textarea versions of the input (like if it was .input-field I made it .textarea-field)
Please help I'm a desperate student working on my final.
HTML
<div class="cell small-12">
<div class="textarea textarea--haruki">
<div class="textarea__field textarea__field--
haruki" type="text" id="input-3" />
<label class="textarea__label textarea__label--haruki" for="input-3">
<textarea class="textarea__label-content textarea__label-content--haruki">MESSAGE
</textarea>
</label>
</div>
</div>
CSS
.textarea {
position: relative;
z-index: 1;
display: inline-block;
margin: 1em;
max-width: 350px;
width: calc(100% - 2em);
vertical-align: top;
}
.textarea__field {
position: relative;
display: block;
float: right;
padding: 0.8em;
width: 60%;
border: none;
border-radius: 0;
background: #f0f0f0;
color: #aaa;
font-weight: bold;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
-webkit-appearance: none; /* for box shadows to show on iOS */
}
.textarea__field:focus {
outline: none;
}
.textarea__label {
display: inline-block;
float: right;
width: 40%;
color: #6a7989;
font-weight: bold;
font-size: 70.25%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.textarea__label-content {
position: relative;
display: block;
padding: .9em 0;
width: 100%;
}
.graphic {
position: absolute;
top: 0;
left: 0;
fill: none;
}
.icon {
color: #ddd;
font-size: 150%;
}
/* Haruki */
.textarea--haruki {
margin: 3em 1em 1em;
}
.textarea__field--haruki {
padding: 1em 0.25em;
width: 100%;
background: transparent;
color: #CC450C;
font-size: 1.55em;
font-family: 'Overpass', sans-serif;
}
.textarea__label--haruki {
position: absolute;
width: 100%;
text-align: left;
pointer-events: none;
}
.textarea__label-content--haruki {
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.textarea__label--haruki::before,
.textarea__label--haruki::after {
content: '';
position: absolute;
left: 0;
z-index: -1;
width: 100%;
height: 4px;
background: #BEEFEC;
-webkit-transition:-webkit-transform 0.3s;
transition: transform 0.3s;
}
.textarea__label--haruki::before {
top: 0;
}
.textarea__label--haruki::after {
bottom: 0;
}
.textarea__field--haruki:focus + .textarea__label--haruki
.textarea__label-content--haruki,
.textarea--filled .textarea__label-content--haruki {
-webkit-transform: translate3d(0, -90%, 0);
transform: translate3d(0, -90%, 0);
}
.textarea__field--haruki:focus + .textarea__label--haruki::before,
.textarea--filled .textarea__label--haruki::before {
-webkit-transform: translate3d(0, -0.5em, 0);
transform: translate3d(0, -0.5em, 0);
}
.textarea__field--haruki:focus + .textarea__label--haruki::after,
.textarea--filled .textarea__label--haruki::after {
-webkit-transform: translate3d(0, 0.5em, 0);
transform: translate3d(0, 0.5em, 0);
}
/*for a clear bg*/
[type='text']:focus{
border: none;
background-color: transparent;
box-shadow: none;
}

You don't put input tag into textarea.
Try <textarea cols="10" row="10"></textarea>

Related

Ionic can i get round input

I need round input in ionic and if possible to use Floating something like this in the image. Its very easy in Flutter but dont know how can i do this in ionic. Or if just possible to make it round input ?
Here is image
enter image description here
to achieve that, you need to create your own component or get one from GitHub or Codepen or somewhere else. ionic does not provide anything like this.
Edited:
I made a component for you and I put it on Codepen. You just have to convert jQuery to your framework syntax.
Click to View on Codepen.io
Here is the component:
HTML:
<div class="container">
<div class="input-container">
<label>Name</label>
<input type="text">
</div>
</div>
CSS:
* {
box-sizing: border-box;
}
body {
font-family: Helvetica;
background: #eee;
-webkit-font-smoothing: antialiased;
}
.container {
width: 380px;
margin: 4em auto;
padding: 2em 2em 2em 2em;
background: #fafafa;
border: 1px solid #ebebeb;
box-shadow: rgba(0, 0, 0, 0.14902) 0px 1px 1px 0px, rgba(0, 0, 0, 0.09804) 0px 1px 2px 0px;
}
.input-container {
position: relative;
}
input {
font-size: 18px;
padding: 10px 15px;
-webkit-appearance: none;
display: block;
background: #fafafa;
color: #636363;
width: 100%;
border: 1px solid #999;
border-radius: 1000px;
}
input:focus {
outline: none;
border: 1px solid #00ff00;
}
label {
color: #999;
font-size: 18px;
font-weight: normal;
position: absolute;
pointer-events: none;
left: 5px;
top: 10px;
transition: all 0.2s ease;
padding: 0 10px;
}
.stylee {
top: -20px;
transform: scale(.75);
left: -2px;
color: #00ff00;
}
JavaScript (jQuery):
$('input').focus(function() {
$(this).prev().addClass('stylee');
}).blur(function() {
if($(this).val())
{
$(this).prev().addClass('stylee');
}
else
{
$(this).prev().removeClass('stylee');
}
});

Vue v-bind:class when outside of a loop

I have a list of articles that get filtered by category via a json file. The filters all work, however there is an archive section which has no value in the json file and is outside of the v-for loop. I am looking for a Vue way to add an active class to the archive filter I have created a codepen (Vue filter json feed) where you can see what I am doing.
Array.prototype.unique = function() {
return this.filter(function(value, index, self) {
return self.indexOf(value) === index;
});
}
var vm = new Vue({
el: '#app',
data: {
items: [],
errors: [],
cats: [],
allItems: [],
isActive: false,
catsCount: [],
filteredItems: [],
selectedItem: "Event",
currentPage: 0,
pageSize: 6
},
created() {
axios
.get(`https://codepen.io/struthy/pen/qgXJZJ.js`)
.then(response => {
// JSON responses are automatically parsed.
this.items = response.data;
this.cats = this.items.map(item => item.itemType).unique();
// this.catsCount = this.items.map(item => item.itemType).unique();
})
.catch(e => {
this.errors.push(e);
});
},
computed: {
filteredPage: function() {
var itemSelectedType = this.selectedItem;
if (this.selectedItem === "All") {
return this.items
.sort(function(a, b) {
return new Date(a.published) - new Date(b.published)
})
.slice(0, (this.currentPage * this.pageSize) + this.pageSize)
} else {
return this.items
.sort(function(a, b) {
if (this.selectedItem != "event") {
return new Date(a.published) - new Date(b.published)
}
// else{
// return new Date(a.endDate) - new Date(b.endDate)
// }
})
.filter(function(item) {
return item.itemType === itemSelectedType;
}).slice(0, (this.currentPage * this.pageSize) + this.pageSize);
}
}, // end filteredPage
showMore: function() {
var itemSelectedType = this.selectedItem;
if (this.items.filter(function(item) {
return item.itemType == itemSelectedType
}).length > (this.pageSize * (this.currentPage + 1))) {
return true;
} else if (this.items.length > (this.pageSize * (this.currentPage + 1))) {
return true; // this is all or unfiltered items
}
else {
return false;
}
}, // end showMore
}, // end computed
methods: {
// give an active class to the filter items
activeItem: function(category) {
if (this.selectedItem === category){
return "isActive"
} else {
return ""
}
}, // end activeItem
/// trying to add an active class to the archive link - not succesful yet
activeAllItem: function() {
var allCategory = this.cats
if (this.selectedItem === !allCategory){
return isActive == true
} else {
return isActive == true
}
} // end activeItem
}
});
.grid {
display: flex;
flex-wrap: wrap;
list-style: none;
margin: 0;
padding: 0; }
.grid--space-between {
justify-content: space-between; }
.grid--full {
width: 100%; }
.grid--third {
width: calc(100% / 12 * 4); }
.grid--2third {
width: calc(100% / 12 * 8); }
#media only screen and (max-width: 768px) {
.grid--2third {
width: 100%; } }
.grid__container {
padding-top: 60px;
padding-bottom: 60px;
border-top: 1px solid #e3e3e3;
display: flex;
flex-wrap: wrap; }
.grid__container--padding-left-right {
padding-left: 7.03125%;
padding-right: 7.03125%; }
.grid__container--space-between {
justify-content: space-between; }
.grid__col {
width: 32%;
display: flex;
min-height: 330px;
margin-bottom: 20px; }
#media only screen and (max-width: 1100px) {
.grid__col {
width: 49%; } }
#media only screen and (max-width: 640px) {
.grid__col {
width: 100%; } }
.grid__col--half {
width: 48%; }
.grid__col--half h2 {
padding: 20px 0 0 0; }
#media only screen and (max-width: 768px) {
.grid__col--half {
width: 100%; } }
.grid__col--border {
margin-bottom: 60px;
border-bottom: 4px solid #002A48;
padding-bottom: 60px; }
.grid__col--column {
flex-direction: column; }
.grid__img {
align-self: flex-start; }
.grid__arrow-link {
font-size: 2rem;
font-family: 'Poppins', sans-serif;
font-weight: bold;
position: relative;
width: fit-content; }
.grid__arrow-link:after {
content: " ";
position: absolute;
right: -32px;
top: 10px;
width: 28px;
height: 10px;
background: url(../assets/img/ream-more-blue.png) center no-repeat; }
.grid__box {
background-size: cover;
background-position: center;
display: flex;
height: 100%;
width: 100%;
flex-direction: column;
justify-content: flex-end;
position: relative;
overflow: hidden; }
.grid__box:hover p {
color: #6CB7E3; }
.grid__box--variation {
background-color: #6CB7E3;
color: #fff;
justify-content: space-between; }
.grid__box--variation:hover {
background-color: #57addf; }
.grid__box--variation:hover p {
color: #fff; }
.grid__bg-img {
background-size: cover;
background-position: center -50px;
display: flex;
height: 100%;
width: 100%;
flex-direction: column;
justify-content: flex-end;
transform: scale(1);
-moz-transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out; }
.grid__bg-img:hover {
transform: scale(1.1);
-moz-transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out; }
.grid__head {
padding: 30px 20px 0; }
.grid__head h3 {
color: #fff;
font-size: 3.8rem;
margin-bottom: 20px; }
.grid__caption {
padding: 20px 20px 0;
position: absolute;
bottom: 0;
left: 0;
width: 100%; }
.grid__caption--basic {
background-color: #e3e3e3; }
.grid__caption--variation {
background-color: #6CB7E3; }
.grid__caption h3 {
font-size: 2.8rem;
line-height: 0.7;
padding-bottom: 0;
margin-bottom: 10px;
font-family: 'Poppins', sans-serif; }
.grid__link {
font-size: 2rem;
font-weight: 700;
position: relative;
width: fit-content; }
.grid__link--basic {
color: #6CB7E3; }
.grid__link:after {
content: " ";
position: absolute;
right: -32px;
top: 10px;
width: 28px;
height: 10px;
background: url(../assets/img/ream-more-blue.png) center no-repeat; }
.grid__link--variation {
color: #fff; }
.grid__link--variation:after {
background: url(../assets/img/ream-more-white.png) center no-repeat; }
.grid:after {
content: "";
width: 32%; }
.fullpage-img {
background-size: cover;
background-position: center;
width: 100%;
height: 600px;
display: flex;
justify-content: center;
flex-direction: row;
position: relative; }
.fullpage-img:before {
content: " ";
position: absolute;
height: 100%;
width: 100%;
top: 0;
left: 0;
background-color: rgba(0, 42, 72, 0.8); }
.fullpage-img__text {
z-index: 99;
align-self: center;
color: #fff;
width: calc(100% / 12 * 8);
text-align: center; }
.fullpage-img__text h3 {
font-size: 4.4rem;
line-height: 1.363;
font-family: 'Poppins', sans-serif;
font-weight: 700;
color: #fff; }
.fullpage-img__text a {
font-weight: 700;
position: relative;
font-size: 2rem; }
.fullpage-img__text a:after {
content: " ";
position: absolute;
right: -32px;
top: 10px;
width: 28px;
height: 10px;
background: url(../assets/img/ream-more-blue.png) center no-repeat; }
.opportunitiesFilter {
width: calc(100% / 12 * 3);
list-style: none;
margin: 0;
padding: 0;
height: 300px; }
#media only screen and (max-width: 768px) {
.opportunitiesFilter {
width: 100%;
margin-bottom: 30px; } }
.opportunitiesFilter__filter-head {
background: #002A48;
padding: 20px;
font-size: 2.3rem;
font-weight: 700;
color: #fff;
display: block;
margin: 0; }
.opportunitiesFilter__title {
color: #fff;
padding: 20px;
display: inline-block;
font-family: 'Poppins', sans-serif;
font-size: 2.2rem;
font-weight: 700; }
.opportunitiesFilter__list-item {
margin: 0;
padding: 0 20px;
background: #6CB7E3; }
.opportunitiesFilter__list-item--title {
background-color: #002A48; }
.opportunitiesFilter__list-item:last-of-type .opportunitiesFilter__btn {
border: 0; }
.opportunitiesFilter__btn {
background: transparent;
border-radius: 0;
border: 0;
outline: 0;
width: 100%;
margin: 0;
padding: 20px;
text-align: left;
color: #fff;
font-weight: 700;
border-bottom: 1px solid #fff; }
.opportunitiesFilter label {
display: block;
position: relative;
padding: 10px 20px;
cursor: pointer;
background-color: #6CB7E3;
color: #fff;
position: relative; }
.opportunitiesFilter label:before {
content: " ";
display: block;
height: 1px;
width: 85%;
position: absolute;
bottom: 0;
left: 20px;
background-color: #fff; }
.opportunitiesFilter label:last-of-type:before {
display: none; }
.opportunitiesFilter input[type="radio"] {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0; }
.opportunitiesFilter .isActive {
font-weight: bold; }
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
<div id="app" class="grid__container grid__container--space-between grid__container--padding-left-right">
<div class="opportunitiesFilter">
<h3 class="opportunitiesFilter__filter-head">Filter</h3>
<label v-for="cat in cats">
<input type="radio" v-model="selectedItem" :value="cat" ref="itemRef"/>
<span :class="activeItem(cat)" >{{ cat }}
(
{{ items.filter(function(x){
return x.itemType == cat
}).length }}
) </span>
</label>
<label>
<input type="radio" v-bind:class="{isActive: isActive}" v-model="selectedItem" value="All" />
Archive ({{ items.length }})
</label>
</div>
<ul class="grid grid--2third grid--space-between">
<li class="grid__col grid__col--half grid__col--column grid__col--border" v-for="item in filteredPage">
<img class="grid__img" v-bind:src="item.itemImage">
<!--<h4>{{ item.itemType }} for testing only</h4>-->
<h2>{{ item.title }}</h2>
<p>{{ item.content }}</p>
<a class="grid__arrow-link" :href="item.link">link</a>
</li>
<li v-if="showMore"><button class="btn blue" v-on:click="currentPage++">load more</button></li>
</ul>
</div>
You need to do a couple things, I'd suggest using a computed to create this value, and you need to wrap your value in a span or some other tag to apply the class "isActive". Currently you are adding this class to an input - which will not give you the bold styling you have on the others.
computed: {
isArchiveActive () {
return this.selectedItem === 'All'
}
}
<label>
<input type="radio" v-model="selectedItem" value="All" />
<span v-bind:class="{'isActive': isArchiveActive}">Archive ({{ items.length }})</span
</label>
Here is the forked codepen:
https://codepen.io/anon/pen/Ervdrr?editors=1010

Multiple responsive pop-ups in same page

i'm trying to add two responsive popups in my page but since i'm new in javascript i cant figure out how to modify this code to make it work for both. So far only one works.
html
<div class="container">
<h1>Responsive Popup</h1>
<a id= "popup-trigger1" class="popup-trigger">Open PopUp 1</a>
<a id= "popup-trigger2" class="popup-trigger">Open PopUp 2</a>
</div>
<div class="popup">
<div class="popup-text">This is my popup 1</div>
<span class="popup-btn-close">×</span>
</div>
css
html, body {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
position: relative;
}
.popup-trigger { display: block; margin: 0 auto; padding: 20px; max-width: 260px; background: #4EBD79; color: #fff; font-size: 18px; font-weight: 700; text-align:center; text-transform: uppercase; line-height: 24px; cursor: pointer; }
body {
background-color: #E3E3E3;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
height: 240px;
text-align: center;
.container {
max-width: 400px;
margin: 0 auto;
padding: 30px;
text-align: center;
background: white;
border-radius: 10px;
border: 5px solid #9AD3DE;
box-sizing: border-box;
}
}
p {
color: #666666;
margin: 30px auto;
text-align: center;
font-size: 16px;
}
.popup {
background: rgba(100, 100, 100, 0.6);
position: fixed;
display: none;
z-index: 5000;
height: 100%;
width: 100%;
left: 0;
top: 0;
> div {
border-radius: 10px;
position: fixed;
background: #FFFFFF;
box-shadow: 0px 0px 15px 0px rgba(#000000, 0.3);
padding: 30px 15px;
/* Width of popup can be changed */
width: 70%;
max-width: 600px;
z-index: 5001;
#include transform(translate(-50%, -50%));
left: 50%;
top: 50%;
text-align: center;
border: 5px solid #9AD3DE;
}
}
.popup {
background: rgba(100, 100, 100, 0.6);
position: fixed;
display: none;
z-index: 5000;
height: 100%;
width: 100%;
left: 0;
top: 0;
}
.popup > div {
border-radius: 10px;
position: fixed;
background: #FFFFFF;
box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
padding: 30px 15px;
/* Width of popup can be changed */
width: 70%;
max-width: 600px;
z-index: 5001;
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
left: 50%;
top: 50%;
text-align: left;
border: 5px solid #f28920;
}
.popup-btn-close {
position: absolute;
background-color: #f28920;
color:white;
top: -15px;
right: -15px;
border-radius: 50%;
width: 30px;
height: 30px;
line-height:30px;
text-align:center;
font-size:20px;
font-weight:bold;
font-family:'Arial Black', Arial, sans-serif;
cursor:pointer;
-webkit-box-shadow: -4px -2px 6px 0px rgba(0,0,0,0.1);
-moz-box-shadow: -4px -2px 6px 0px rgba(0,0,0,0.1);
box-shadow: -3px 1px 6px 0px rgba(0,0,0,0.1);
}
.popup-btn-close:hover {
background-color: #ac5918;
color: #fff;
}
.popup-text {background: #fff; color: #333; font-size: 19px; line-height: 30px; z-index: 9999;}
# Javascript#
function popupOpenClose(popup) {
/* Add div inside popup for layout if one doesn't exist */
if ($(".wrapper").length == 0){
$(popup).wrapInner("<div class='wrapper'></div>");
}
/* Open popup */
$(popup).show();
/* Close popup if user clicks on background */
$(popup).click(function(e) {
if ( e.target == this ) {
if ($(popup).is(':visible')) {
$(popup).hide();
}
}
});
/* Close popup and remove errors if user clicks on cancel or close
buttons */
$(popup).find(".popup-btn-close").on("click", function() {
if ($(".formElementError").is(':visible')) {
$(".formElementError").remove();
}
$(popup).hide();
});
}
$(document).ready(function () {
$("#popup-trigger1").on("click", function() {
popupOpenClose($(".popup"));
});
});
This is my codepen Codepen
Your help willlll be so much appreciated.
Thank you very much!
krystel
Here is one way to have separate popups. I added another popup div, gave them unique ids, then created a data-target attribute on the triggers. I changed the trigger to work on everything that has a popup-trigger class, and then made a tweak to the wrapper code so that it will create a wrapper in the current popup rather than checking if ANY wrapper exists.
There is also a memory leak because every time you open a popup, you attach more event handlers instead of only attaching them once. I would highly recommend you rework them to avoid issues down the road. Convert them to global events on the document rather than per-popup. I did not change them below as I wanted a minimal change set so you could see what was necessary for your question.
function popupOpenClose(popup) {
/* Add div inside popup for layout if one doesn't exist */
if ($(".wrapper", popup).length == 0) {
$(popup).wrapInner("<div class='wrapper'></div>");
}
/* Open popup */
$(popup).show();
/* Close popup if user clicks on background */
$(popup).click(function(e) {
if (e.target == this) {
if ($(popup).is(':visible')) {
$(popup).hide();
}
}
});
/* Close popup and remove errors if user clicks on cancel or close buttons */
$(popup).find(".popup-btn-close").on("click", function() {
if ($(".formElementError").is(':visible')) {
$(".formElementError").remove();
}
$(popup).hide();
});
}
$(document).ready(function() {
$(".popup-trigger").on("click", function() {
var target = $(this).data('target');
popupOpenClose($(target));
});
});
/* this was actually some kind of LESS or SASS/SCSS originally.
I just stripped out the unnecessary parts, but no changes were necessary */
html,
body {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
position: relative;
}
.popup-trigger {
display: block;
margin: 0 auto;
padding: 20px;
max-width: 260px;
background: #4EBD79;
color: #fff;
font-size: 18px;
font-weight: 700;
text-align: center;
text-transform: uppercase;
line-height: 24px;
cursor: pointer;
}
body {
background-color: #E3E3E3;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
height: 240px;
text-align: center;
}
h1,
p,
h2,
button {
font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 100;
letter-spacing: 0.5px;
}
h1 {
font-size: 40px;
text-align: center;
color: #666666;
margin: 0 0 30px 0;
}
p {
color: #666666;
margin: 30px auto;
text-align: center;
font-size: 16px;
}
.popup {
background: rgba(100, 100, 100, 0.6);
position: fixed;
display: none;
z-index: 5000;
height: 100%;
width: 100%;
left: 0;
top: 0;
}
.popup>div {
border-radius: 10px;
position: fixed;
background: #FFFFFF;
box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
padding: 30px 15px;
/* Width of popup can be changed */
width: 70%;
max-width: 600px;
z-index: 5001;
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
left: 50%;
top: 50%;
text-align: left;
border: 5px solid #f28920;
}
.popup-btn-close {
position: absolute;
background-color: #f28920;
color: white;
top: -15px;
right: -15px;
border-radius: 50%;
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
font-size: 20px;
font-weight: bold;
font-family: 'Arial Black', Arial, sans-serif;
cursor: pointer;
-webkit-box-shadow: -4px -2px 6px 0px rgba(0, 0, 0, 0.1);
-moz-box-shadow: -4px -2px 6px 0px rgba(0, 0, 0, 0.1);
box-shadow: -3px 1px 6px 0px rgba(0, 0, 0, 0.1);
}
.popup-btn-close:hover {
background-color: #ac5918;
color: #fff;
}
.popup-text {
background: #fff;
color: #333;
font-size: 19px;
line-height: 30px;
z-index: 9999;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container">
<h1>Responsive Popup</h1>
<a class="popup-trigger" data-target="#popup1">Open PopUp 1</a>
<a class="popup-trigger" data-target="#popup2">Open PopUp 2</a>
</div>
<div id="popup1" class="popup">
<div class="popup-text">This is my popup 1</div>
<span class="popup-btn-close">×</span>
</div>
<div id="popup2" class="popup">
<div class="popup-text">This is my popup 2</div>
<span class="popup-btn-close">×</span>
</div>

prevent body scroll on modal close

I have a simple html/css modal dialog that I close with a button and onclick event handlers in javascript. When the modal window is closed, the body of the site scrolls to the top of the screen. I need to prevent this.
Here is my code:
function modalClose() {
if (location.hash == '#log_in') {
location.hash = '';
}
}
// Handle ESC key (key code 27)
document.addEventListener('keyup', function(e) {
if (e.keyCode == 27) {
modalClose();
}
});
var modal = document.querySelector('#log_in');
// Handle click on the modal container
modal.addEventListener('click', modalClose, false);
// Prevent event bubbling if click occurred within modal content body
modal.children[0].addEventListener('click', function(e) {
e.stopPropagation();
}, false);
.modalDialog {
position: fixed;
font-family: Arial, Helvetica, sans-serif;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(0, 0, 0, 0.8);
z-index: 99999;
opacity: 0;
-webkit-transition: opacity 400ms ease-in;
-moz-transition: opacity 400ms ease-in;
transition: opacity 400ms ease-in;
pointer-events: none;
}
.modalDialog:target {
opacity: 1;
pointer-events: auto;
}
.modalDialog > div {
height: auto;
width: 75%;
position: relative;
margin-top: 2%;
margin-bottom: 10%;
margin-left: 10%;
margin-right: 10%;
padding: 5px 20px 13px 20px;
border-radius: 10px;
background: #fff;
}
.close {
background: #606061;
color: #FFFFFF;
line-height: 25px;
position: absolute;
right: -11px;
text-align: center;
top: -10px;
width: 24px;
text-decoration: none;
font-weight: bold;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
-moz-box-shadow: 1px 1px 3px #000;
-webkit-box-shadow: 1px 1px 3px #000;
box-shadow: 1px 1px 3px #000;
text-indent: 0px;
}
.close:hover {
background: navy;
}
<link href="https://thomaswurdinger.com/Store_Reboot/css/styles.css" rel="stylesheet" />
<script src="https://thomaswurdinger.com/Store_Reboot/js/js.js"></script>
<link href="https://thomaswurdinger.com/Store_Reboot/css/style.css" rel="stylesheet" />
<div id="log_in" class="modalDialog">
<div>
X
<div>Modal Contents</div>
</div>
</div>
I changed :
if (location.hash == '#log_in') {
location.hash = '';
}
to:
if (location.hash == '#log_in') {
location.hash = 'pagename.php';
}

Facebook-like selection

I have made this Facebook-like selection in which the selection can be unselected by clicking the x button. I already got my Auto-complete working but I only want to have the selected options to look like the one on the link. How would I do that?
The source code for FCBKcomplete can be found here:
http://www.emposha.com/javascript/fcbkcomplete.html
It's basically a list (UL) with styled list items.
/* Copyright: Guillermo Rauch <http://devthought.com/> - Distributed under MIT - Keep this message! */
/* TextboxList sample CSS */
ul.holder { margin: 0; border: 1px solid #999; overflow: hidden; height: auto !important; height: 1%; padding: 4px 5px 0; }
*:first-child+html ul.holder { padding-bottom: 2px; } * html ul.holder { padding-bottom: 2px; } /* ie7 and below */
ul.holder li { float: left; list-style-type: none; margin: 0 5px 4px 0; white-space:nowrap;}
ul.holder li.bit-box, ul.holder li.bit-input input { font: 11px "Lucida Grande", "Verdana"; }
ul.holder li.bit-box { -moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px; border: 1px solid #CAD8F3; background: #DEE7F8; padding: 1px 5px 2px; }
ul.holder li.bit-box-focus { border-color: #598BEC; background: #598BEC; color: #fff; }
ul.holder li.bit-input input { width: auto; overflow:visible; margin: 0; border: 0px; outline: 0; padding: 3px 0px 2px; } /* no left/right padding here please */
ul.holder li.bit-input input.smallinput { width: 20px; }
/* Facebook demo CSS */
ul.holder { margin: 0 !important }
ul.holder li.bit-box, #apple-list ul.holder li.bit-box { padding-right: 15px; position: relative; z-index:1000;}
#apple-list ul.holder li.bit-input { margin: 0; }
#apple-list ul.holder li.bit-input input.smallinput { width: 5px; }
ul.holder li.bit-hover { background: #BBCEF1; border: 1px solid #6D95E0; }
ul.holder li.bit-box-focus { border-color: #598BEC; background: #598BEC; color: #fff; }
ul.holder li.bit-box a.closebutton { position: absolute; right: 4px; top: 5px; display: block; width: 7px; height: 7px; font-size: 1px; background: url('close.gif'); }
ul.holder li.bit-box a.closebutton:hover { background-position: 7px; }
ul.holder li.bit-box-focus a.closebutton, ul.holder li.bit-box-focus a.closebutton:hover { background-position: bottom; }
/* Autocompleter */
.facebook-auto { display: none; position: absolute; background: #eee; z-index:1001;}
.facebook-auto .select_all_items {display: block; float: right;}
.facebook-auto .default { padding: 5px 7px; border: 1px solid #ccc; border-width: 0 1px 1px;font-family:"Lucida Grande","Verdana"; font-size:11px; }
.facebook-auto ul { display: none; margin: 0; padding: 0; overflow: auto; position:absolute; z-index:9999}
.facebook-auto ul li { padding: 5px 12px; z-index: 1000; cursor: pointer; margin: 0; list-style-type: none; border: 1px solid #ccc; border-width: 0 1px 1px; font: 11px "Lucida Grande", "Verdana"; background-color: #eee }
.facebook-auto ul li em { font-weight: bold; font-style: normal; background: #ccc; }
.facebook-auto ul li.auto-focus { background: #4173CC; color: #fff; }
.facebook-auto ul li.auto-focus em { background: none; }
.deleted { background-color:#4173CC !important; color:#ffffff !important;}
.hidden { display:none;}
#demo ul.holder li.bit-input input { padding: 2px 0 1px; border: 1px solid #999; }
.ie6fix {height:1px;width:1px; position:absolute;top:0px;left:0px;z-index:1;}