javascript - Expand input field width smoothly on click - Stack Overflow

I want to display an input field .search when clicking on .icon class. I have managed to do that with f

I want to display an input field .search when clicking on .icon class. I have managed to do that with following code. However instead of show/hide, I want to display the input field by smoothly expanding its width.

How that can be done?

JSFiddle Demo:

/

HTML:

<div class="box">
    <input class="search" type="search" placeholder="Search" />
     <div class="icon"></div>  
</div>

CSS:

.box{
    position: relative;
    width: 220px;
}

.search {    
    width: 200px;
    padding: 5px;
      -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
    float: left;
}


.icon{
    width: 20px;
    height: 20px;
    background: red; 
    position: absolute; 
    right: 0;
}

JS:

$('.icon').click(function() {
    $('.search').toggle();
});

I want to display an input field .search when clicking on .icon class. I have managed to do that with following code. However instead of show/hide, I want to display the input field by smoothly expanding its width.

How that can be done?

JSFiddle Demo:

http://jsfiddle/9nPW9/

HTML:

<div class="box">
    <input class="search" type="search" placeholder="Search" />
     <div class="icon"></div>  
</div>

CSS:

.box{
    position: relative;
    width: 220px;
}

.search {    
    width: 200px;
    padding: 5px;
      -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
    float: left;
}


.icon{
    width: 20px;
    height: 20px;
    background: red; 
    position: absolute; 
    right: 0;
}

JS:

$('.icon').click(function() {
    $('.search').toggle();
});
Share Improve this question asked Aug 5, 2014 at 12:22 user1355300user1355300 4,99718 gold badges50 silver badges73 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 11

Why not change your code to toggle a class, thus keeping a clear separation between functionality (JS) and style (CSS)

Below is some sample code, you will likely want to edit for your precise needs.

Demo Fiddle

JS

$('.icon').click(function() {
    $('.search').toggleClass('expanded');
});

CSS

 .box {
    position: relative;
    width: 220px;
}
.search {
    width: 200px;
    max-width:0;
    padding: 5px;
    transition: all .5s ease;
    position:absolute;
    right:20px;
    box-sizing:border-box;
    opacity:0;
}
.search.expanded {
    max-width:200px;
    opacity:1;
}
.icon {
    width: 20px;
    height: 20px;
    background: red;
    position: absolute;
    right: 0;
}

You should use .slideToggle() or fadeToggle()

$('.icon').click(function() {
    $('.search').slideToggle(500);
});

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743615029a4478851.html

相关推荐

  • javascript - Expand input field width smoothly on click - Stack Overflow

    I want to display an input field .search when clicking on .icon class. I have managed to do that with f

    1天前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信