web前端入門到實戰:css滑鼠經過彈出子選單特效
<!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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- web前端入門到實戰:css騷操作之表單驗證Web前端CSS
- web前端入門到實戰:非同步載入CSS最簡單的實現方式Web前端非同步CSS
- web前端入門到實戰:css3 實現大轉盤Web前端CSSS3
- web前端入門到實戰:CSS 層疊上下文(Stacking Context)Web前端CSSContext
- web前端入門到實戰:Js代理模式Web前端JS模式
- web前端入門到實戰:簡單的圖片輪播Web前端
- web前端入門到實戰:你真的瞭解CSS繼承嗎?看完必跪Web前端CSS繼承
- GridView滑鼠經過感知以及點選行彈出視窗View
- web前端入門到實戰:HTML元素巢狀問題Web前端HTML巢狀
- web前端入門到實戰:好用的Js圖表庫Web前端JS
- web前端入門到實戰:css3迴圈,模擬拼多多動畫效果Web前端CSSS3動畫
- jQuery和css3全屏彈出式導航選單特效外掛jQueryCSSS3特效
- web前端入門到實戰:擼兩個天氣小程式Web前端
- web前端入門到實戰:常用網頁元素命名規範Web前端網頁
- 前端開發入門到實戰:css單行截斷和多行截斷問題前端CSS
- 滑鼠經過顯示下拉選單
- web前端入門到實戰:H5-canvas實現粒子時鐘Web前端H5Canvas
- 前端開發入門到實戰:六種組織CSS的方式前端CSS
- 如何不使用js實現滑鼠hover彈出選單效果JS
- 利用transform實現一個純CSS彈出選單ORMCSS
- web前端入門到實戰:JS中new操作符原始碼實現Web前端JS原始碼
- web前端入門到實戰:30行前端程式碼實現任意文字轉粒子Web前端
- web前端入門到實戰:js擷取字串相關的知識點Web前端JS字串
- Flutter For Web入門實戰FlutterWeb
- 前端開發入門到實戰:css實現修改瀏覽器自動填充表單的預設樣式前端CSS瀏覽器
- Web前端之 CSS入門第六天Web前端CSS
- 前端開發入門到實戰:css實現div垂直水平居中的2種常用方法前端CSS
- web3從入門到實戰-理論篇Web
- .滑鼠點選愛心特效的實現特效
- 前端開發入門到實戰:CSS三欄佈局的5種方法詳解前端CSS
- Linux入門到實戰Linux
- 前端開發入門到實戰:CSS自定義屬性+CSS Grid網格實現超級的佈局能力前端CSS
- web3從入門到實戰-NFT與代幣Web
- css滑鼠懸浮下拉選單效果CSS
- web前端入門到實戰:用css3實現驚豔面試官的背景即背景動畫(高階附原始碼)Web前端CSSS3面試動畫原始碼
- 前端大資料視覺化從入門到實戰前端大資料視覺化
- Redis 從入門到實戰Redis
- Gin + GORM 入門到實戰GoORM