码迷,mamicode.com
首页 > 其他好文 > 详细

React练习 6 :记住密码提示框

时间:2019-11-09 23:32:05      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:cti   css   自动登陆   react   show   roo   from   classname   check   

需求:鼠标mouseoverj时显示提示框,mouseoutj地隐藏

import React,{useState,useEffect} from ‘react‘;
import ReactDOM from ‘react-dom‘;
import ‘./index.css‘;


function Tips(props){
    const [isShow,setShow]=useState(false);
    return(
        <div id="outer">
            <label            
            onMouseOver={()=>setShow(true)}
            onMouseOut={()=>setShow(false)}
            ><input type="checkbox" />两周内自动登陆</label>
            <div id="tips" className={isShow ? ‘new‘ : ‘‘}>为了您的信息安全,请不要在网吧或公用电脑上使用此功能!</div>
        </div>
    )
}



ReactDOM.render(
    <Tips/>,
    document.getElementById(‘root‘)
)

 

React练习 6 :记住密码提示框

标签:cti   css   自动登陆   react   show   roo   from   classname   check   

原文地址:https://www.cnblogs.com/sx00xs/p/11828031.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!