4.搜索框动画效果实现19-06-06

代码见https://gitee.com/XiaoKunErGe/JianShu.git历史第五次提交
1.设置一个初始开关

constructor(props){
    super(props);
    this.state = {
      focused: false,
    }
  }

并在search组件中设置className,当focused为true时

<NavSearch
      className={this.state.focused ? 'focused': ''}
 >
</NavSearch>

到style中设置搜索栏宽度

&.focused {
       width: 300px;
    }

到icon图标className中添加focused,改变图标背景颜色

<i className={this.state.focused ? 'focused iconfont': 'iconfont'}>&#xe625;</i>
&.focused {
       background: #777;
       color: #fff;
    }

2.在search组件中添加方法控制搜索栏的收放

 onFocus={this.handleInputFocus.bind(this)}
 onBlur={this.handleInputBlur.bind(this)}
 handleInputFocus(){
      this.setState({
        focused: true
      })
  }
  handleInputBlur(){
      this.setState({
        focused: false
      })
  }

这时候就可以实现点击收放搜索栏了
4.添加动画效果
安装Transition动画
//yarn add react-transition-group
并引入
import { CSSTransition } from 'react-transition-group';

 <CSSTransition
              in={this.state.focused} //控制动画状态
              timeout={2000} 设置延时
              classNames="slide"
            >
            <NavSearch
              className={this.state.focused ? 'focused': ''}
              onFocus={this.handleInputFocus}
              onBlur={this.handleInputBlur}
            ></NavSearch>
            </CSSTransition>

然后到style中添加设置动画代码

export const SearchWrapper = styled.div`
  .slide-enter {
  //动画开始的时候
    transition: all .2s ease-out;
  }
  .slide-enter-active {
  //当动画执行的时候
    width: 300px;
  }
  .slide-exit {
  //当动画收起的时候
    transition: all .2s ease-out;
  }
  .slide-exit-active {
    width: 160px;
  }`;

这样动画效果就实现了。

index.js文件

import React, { Component } from 'react';
import { CSSTransition } from 'react-transition-group';
import {
  HeaderWrapper,
  Logo,
  Nav,
  NavItem,
  NavSearch,
  Addition,
  Button,
  SearchWrapper
} from "./style";

class Header extends Component {
  constructor(props){
    super(props);
    this.state = {
      focused: false,
    }
    this.handleInputFocus = this.handleInputFocus.bind(this);
    this.handleInputBlur = this.handleInputBlur.bind(this);
  }
  render(){
    return (
      <HeaderWrapper>
        <Logo />
        <Nav>
          <NavItem className='left active'>首页</NavItem>
          <NavItem className='left'>下载App</NavItem>
          <NavItem className='right'>登录</NavItem>
          <NavItem className='right'>
            <i className="iconfont">&#xe602;</i>
          </NavItem>
          <SearchWrapper>
            <CSSTransition
              in={this.state.focused}
              timeout={2000}
              classNames="slide"
            >
            <NavSearch
              className={this.state.focused ? 'focused': ''}
              onFocus={this.handleInputFocus}
              onBlur={this.handleInputBlur}
            ></NavSearch>
            </CSSTransition>
              <i className={this.state.focused ? 'focused iconfont': 'iconfont'}>&#xe625;</i>
          </SearchWrapper>
        </Nav>
        <Addition>
          <Button className='writting'>
            <i className="iconfont">&#xe616;</i>
            写文章
          </Button>
          <Button className='reg'>注册</Button>
        </Addition>
      </HeaderWrapper>
    )
  }
  handleInputFocus(){
      this.setState({
        focused: true
      })
  }
  handleInputBlur(){
      this.setState({
        focused: false
      })
  }
}
export default Header;

style.js代码

import styled from 'styled-components';
import logoPic from '../../statics/logo.png';
//这实际就是创建一个带有样式的div标签
export const HeaderWrapper = styled.div`
/**绝对定位*/
    position: relative;
     height: 58px;
     border-bottom: 1px solid #f0f0f0;
`;

//简书的简书Logo实际上是一个返回首页的a标签
export const Logo = styled.a.attrs({
  href:'/'//返回根路径
})`
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width:100px;
    height: 56px;
    background: url(${logoPic}); 
    background-size: contain; 
`;
export const Nav = styled.div`
    width: 960px;
    height: 100%;
    padding-right: 70px;
    box-sizing: border-box;
    margin: 0 auto;
`;
export const NavItem = styled.div`
    line-height: 56px;
    padding: 0 15px;
    font-size: 17px;
    color:#333;
    &.left {
      float: left;
    }
    &.right {
      float: right;
      color:#969696;
    }
    &.active {
      color: #ea6f5a;
    }
`;
export const NavSearch = styled.input.attrs(
  {
    placeholder: '搜索'
  })`
    width:160;
    height: 38px;
    padding: 0 30px 0 20px;
    margin-top:9px;
    margin-left: 20px;
    box-sizing: border-box;
    border: none;
    outline: none;
    border-radius: 19px;
    background: #eee;
    font-size: 14px;
    color: #666;
    &::placeholder {
       color: #999;
    }
    &.focused {
       width: 300px;
    }
  `;
export const Addition = styled.div`
  position: absolute;
  right: 0;
  top: 0;
  height: 56px;
`;
export const SearchWrapper = styled.div`
  position: relative;
  float: left;
  .slide-enter {
  //动画开始的时候
    transition: all .2s ease-out;
  }
  .slide-enter-active {
  //当动画执行的时候
    width: 300px;
  }
  .slide-exit {
  //当动画收起的时候
    transition: all .2s ease-out;
  }
  .slide-exit-active {
    width: 160px;
  }
   // background: yellow;
  .iconfont {
    position:absolute;
    right: 5px;
    bottom: 5px;
    width: 30px;
    line-height: 30px;
    border-radius: 15px;
    // background: green;
    text-align: center;
    &.focused {
       background: #777;
       color: #fff;
    } 
  } 
`;
export const Button = styled.div`
  float: right;
  margin-top: 9px;
  margin-right: 20px;
  padding: 0 20px;
  line-height: 38px;
  border-radius: 19px;
  border: 1px solid #ec6149;
  fond-size: 14px;
  &.reg {
     color: #ec6149;
  }
  &.writting {
     color: #fff;
     background: #ec6149;
  }
`;
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,992评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,212评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,535评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,197评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,310评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,383评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,409评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,191评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,621评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,910评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,084评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,763评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,403评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,083评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,318评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,946评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,967评论 2 351

推荐阅读更多精彩内容

  • 本片抓拍于2015年8月12日,工作路上偶遇奇缘,竟将一切烦恼都抛在脑后了
    _星期九_阅读 199评论 0 0
  • 你有没有每晚收到晚安消息的经历?会不会在收到晚安后欣然的入睡抑或在没收到晚安后难以入睡?有人说晚安就是我爱你,每...
    迎风裙子阅读 154评论 0 2
  • 《千字文》南北朝·梁朝/周兴嗣 王树山书法
    王树山书法阅读 229评论 0 1
  • 1、偶然,必然 天有不测风云,月有阴晴圆缺。虽是意料之外,却在情理之中。万事的变迁就好比水滴石穿,点滴积累...
    葡萄云阅读 280评论 0 1