Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UI improvement of search box during transition on scrolling #205 #206

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions _includes/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,20 @@
if(expanded){
condenser();}
});
$(document).on("scroll", function () {
if ($(document).scrollTop() > 10) {
$("#searchForm").removeClass("searchForm-large").addClass("searchForm-small");
}
else {
$("#searchForm").removeClass("searchForm-small").addClass("searchForm-large");
}
});
$("#searchForm").click( function(event){
if(expanded){
event.stopPropagation();}
});
var searchbar = $("#searchForm").offset();
var menubar = $("#menuBar").offset();var distance1 = menubar.left -(searchbar.left + 200);
var menubar = $("#menuBar").offset();var distance1 = menubar.left -(searchbar.left + 200);
if((searchbar.left +200)>menubar.left){
var distance= distance1 + 13 + searchbar.left;
$("#searchForm").css("left", distance.toString() + "px");
Expand Down Expand Up @@ -52,8 +60,8 @@
document.getElementById("searchForm").style.width="53%";
document.getElementById("SearchBar").style.width="90%";
document.getElementById("menuBar").style.visibility="hidden";
setTimeout(function(){

setTimeout(function(){
document.getElementById("closebtn").style.visibility="visible";
document.getElementById("closebutton").style.height="14px";
document.getElementById("closebutton").style.width="14px";
Expand All @@ -65,13 +73,13 @@
document.getElementById("menuBar").style.visibility="visible";
document.getElementById("searchForm").style.width="200px";
document.getElementById("SearchBar").style.width="75%";
setTimeout(function(){
setTimeout(function(){
document.getElementById("closebutton").style.height="0px";
document.getElementById("closebutton").style.width="0px";
document.getElementById("closebtn").style.visibility="hidden";
expanded = false;}, 300);
}

};
</script>
<header class="large" id="firstHeader" >
Expand All @@ -98,7 +106,7 @@
</div>

<div class="collapse navbar-collapse zeroMarPadBtm" id="bs-example-navbar-collapse-1" >
<div id="searchForm">
<div id="searchForm" class="searchForm-large">
<input type="text" id="SearchBar" onchange="searchLoad()">
<a onclick="condenser()" id="closebtn" style="visibility:hidden;height:0px;padding-right:5px;width:0px;position:relative;">
<svg id="closebutton"height="0px" id="Layer_1" style="enable-background:new 0 0 512 512;" version="1.1" viewBox="0 0 512 512" width="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M437.5,386.6L306.9,256l130.6-130.6c14.1-14.1,14.1-36.8,0-50.9c-14.1-14.1-36.8-14.1-50.9,0L256,205.1L125.4,74.5 c-14.1-14.1-36.8-14.1-50.9,0c-14.1,14.1-14.1,36.8,0,50.9L205.1,256L74.5,386.6c-14.1,14.1-14.1,36.8,0,50.9 c14.1,14.1,36.8,14.1,50.9,0L256,306.9l130.6,130.6c14.1,14.1,36.8,14.1,50.9,0C451.5,423.4,451.5,400.6,437.5,386.6z"/></svg>
Expand Down
23 changes: 18 additions & 5 deletions css/airspace.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
margin-right:5px;
position:absolute;
left:350px;
bottom:1px;
z-index:2;
width: 200px;
box-sizing: border-box;
Expand All @@ -16,9 +15,8 @@
background-color: #FCFCFC;
background-position: 10px 10px;
background-repeat: no-repeat;
padding: 7px 10px 7px 10px;
-webkit-transition: width 0.4s ease-in-out;
transition: width 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
#SearchBar {
border: none;
Expand All @@ -44,7 +42,11 @@
background-color: #E6E6FA;
}
#searchLink{
padding-left:0px!important;
bottom: -0.1em;
padding-left: 0px !important;
position: relative;
height: 0;
width: 0;
}
#searchLink:hover{
cursor:pointer;
Expand Down Expand Up @@ -2704,3 +2706,14 @@ font-size:30px;
#mc_embed_signup #mce-error-response {display:none;}
#mc_embed_signup #mce-success-response {color:#529214; display:none;}
#mc_embed_signup label.error {display:block; float:none; width:auto; margin-left:1.05em; text-align:left; padding:.5em 0;}

.searchForm-large {
bottom:1px;
padding: 7px 10px 7px 10px;
}

.searchForm-small {
height: 2.25em!important;
padding: 0 0.1em 0 0.1em;
bottom:0.5em;
}
Loading