web前端入門到實戰:css滑鼠經過彈出子選單特效

智雲程式設計發表於2020-01-13

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name=viewport content='width=device-width, initial-scale=1, maximum-scale=1'>
<title>Hello React!</title>
<style>
::-webkit-scrollbar{ display:none; }
::-webkit-input-placeholder { 
  font-size: 20px;
}web前端開發學習Q-q-u-n: 731771211,分享學習的方法和需要注意的小細節,不停更新最新的教程和學習方法(詳細的前端專案實戰教學影片,PDF)
li , span , img{
    list-style-type:none;
    cursor:pointer;
} 
html,body,#app{
    margin: 0;
    padding: 0;
    height: 100%;
    -webkit-overflow-scrolling: touch;
}
#circle:before{
    content:'';
    display:block;
    border-radius: 50%;
    transition: .5s ;
}    
#circle:hover:before{
    width: 50px;
    height: 50px;
    border:1px solid;
    transform:translate(-100px,70px);
    box-shadow: 0 0 0 10px gray;
}
#circle:after{
    content:'';
    display:block;
    border-radius: 50%;
    transition: .5s ;
}    
#circle:hover:after{
    width: 50px;
    height: 50px;
    border:1px solid;
    transform:translate(100px,16px);
}
#circle ~ div{
    transform:translateY(50px);
}
#circle:hover ~ div{
    width: 50px;
    height: 50px;
    border:1px solid;
    border-radius: 50%;
    transform:translateY(70px);
    transition: transform .5s ;
}
#circle ~div:before{
    content:'';
    display:block;
    border-radius: 50%;
    transition: .5s .5s ;
}
#circle:hover ~ div:before{
    width: 50px;
    height: 50px;
    border:1px solid;
    transform:translateY(70px);
}    
</style>
<link href='index.css' rel='stylesheet' type='text/css' />
<script src="https://cdn.staticfile.org/react/16.4.0/umd/react.development.js"></script>
<script src="https://cdn.staticfile.org/react-dom/16.4.0/umd/react-dom.development.js"></script>
<script src="
<script src="index.js"></script>
</head>
<body>
<div id='app'></div>
<script type="text/babel">
const l=console.log
var Flex=(flex,props)=>
<div className={flex} style={props.style} onClick={props.click} id={props.id}>
    {props.data ? props.data.map(d=><span>{d}</span>) : props.children}
</div>
class Index extends React.Component{
    state={
    }
    render() {
        return (
            <CC>
                <div id='circle' style={{position:'absolute', width: '50px', height: '50px', border:'1px solid', borderRadius: '50%' }}>
                </div>
                <div ></div>
            </CC>    
        )
    }    
}
ReactDOM.render(
    <Index />,
    document.getElementById('app')
)
</script>
</body>
</html>


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69901074/viewspace-2673206/,如需轉載,請註明出處,否則將追究法律責任。

相關文章