CSS3雷達掃描效果
本章節分享一段程式碼例項,它使用css3實現了雷達掃描效果。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> *{ padding:0; margin:0; } body{ background-color:#f0f0f0; } .radar{ width:300px; height:300px; border-radius:50%; box-shadow:#0C840C 0 0 0 1px; position:absolute; left:50%; top:50%; margin:-150px; } .laserLine{ width:150px; height:300px; overflow:hidden; position:absolute; left:50%; top:50%; margin:-150px; transform-origin:150px 150px; animation-name:scan; animation-duration:5s; animation-timing-function:linear; animation-iteration-count:infinite; } .laserLineInset{ width:300px; height:300px; border-radius:50%; position:absolute; background-image:-webkit-linear-gradient(-30deg,rgba(0,0,0,0),rgba(255,0,0,0),rgb(5,113,1) 99%); clip:rect(0,150px,300px,0px); transform:rotate(135deg); } .radarIn{ width:150px; height:150px; position:absolute; top:50%; left:50%; border-radius:50%; margin:-75px; box-shadow:#0C840C 0 0 0 1px; } .lineX{ width:300px; height:1px; background-color:#0C840C; position:absolute; top:50%; } .lineY{ width:1px; height:300px; background-color:#0C840C; position:absolute; left:50%; } @keyframes scan{ 0%{ transform:rotate(0deg); } 100%{ transform:rotate(-360deg); } } </style> </head> <body> <div class="radar"> <div class="lineX"></div> <div class="lineY"></div> <div class="radarIn"></div> <div class="laserLine"> <div class="laserLineInset"></div> </div> </div> </body> </html>
相關文章
- Android自定義View 雷達掃描效果AndroidView
- 掃描重複和類似的 CSSCSS
- 掃描技術和掃描工具
- AWVS掃描器掃描web漏洞操作Web
- 雷達氣象相關詞彙(一 掃描模式)模式
- win10系統掃描器提示掃描不到掃描器如何解決Win10
- 掃描王 for Mac專業圖片掃描工具Mac
- Nmap掃描教程之基礎掃描詳解
- Oracle中存取資料掃描Table及索引的方式(全表掃描,索引掃描等)Oracle索引
- MySQL中的全表掃描和索引樹掃描MySql索引
- 一個炫酷的仿雷達掃描和擴散效果——自定義View就是這麼簡單View
- 埠掃描器
- 安全掃描工具
- 綜合掃描工具
- 京東掃描平臺EOS—JS掃描落地與實踐JS
- DAST 黑盒漏洞掃描器 第四篇:掃描效能AST
- 藍芽掃描工具btscanner修復暴力掃描模式藍芽模式
- iOS 使用CIDetector掃描相簿二維碼、原生掃描iOSIDE
- 索引全掃描和索引快速全掃描的區別索引
- 防微信雷達掃描加好友控制元件實現控制元件
- 電腦掃描檔案怎麼掃描 win10電腦掃描檔案方法介紹Win10
- oracle 全表掃描,索引範圍掃描與塊的理解Oracle索引
- Zenmap(埠掃描工具)
- 淺談掃描線
- python掃描埠Python
- python 埠掃描Python
- 域名掃描工具Fierce
- direasch目錄掃描
- sonar(二)掃描配置
- 掃描行為分析
- CSS3文字的描邊鏤空效果CSSS3
- Nessus漏洞掃描教程之使用Nmap工具掃描識別指紋
- (轉)索引掃描還是全表掃描(Index Scan Or Full Table Scan)索引Index
- 轉)索引掃描還是全表掃描(Index Scan Or Full Table Scan)索引Index
- Pythonpyclamad病毒掃描與目錄病毒掃描指令碼(轉載)Python指令碼
- 自制分散式漏洞掃描分散式
- PostgreSQL掃描方法綜述SQL
- 【Oracle】 索引的掃描方式Oracle索引