中文亚洲精品无码_熟女乱子伦免费_人人超碰人人爱国产_亚洲熟妇女综合网

當前位置: 首頁 > news >正文

施工企業(yè)資質包括哪些優(yōu)化大師手機版下載安裝app

施工企業(yè)資質包括哪些,優(yōu)化大師手機版下載安裝app,WordPress柒比貳主題下載,專門做黃漫的網(wǎng)站CSS畫圓以及CSS實現(xiàn)動態(tài)圓 1. 先看基礎(靜態(tài)圓)1.1 效果如下:1.2 代碼如下: 2. 動態(tài)圓2.1 一個動態(tài)圓2.1.1 讓圓漸變2.1.2 圓漸變8秒后消失2.1.3 轉動的圓(單個圓) 2.2 多個動態(tài)圓 1. 先看基礎(…

CSS畫圓以及CSS實現(xiàn)動態(tài)圓

  • 1. 先看基礎(靜態(tài)圓)
    • 1.1 效果如下:
    • 1.2 代碼如下:
  • 2. 動態(tài)圓
    • 2.1 一個動態(tài)圓
      • 2.1.1 讓圓漸變
      • 2.1.2 圓漸變8秒后消失
      • 2.1.3 轉動的圓(單個圓)
    • 2.2 多個動態(tài)圓

1. 先看基礎(靜態(tài)圓)

1.1 效果如下:

  • 如下:
    在這里插入圖片描述

1.2 代碼如下:

  • 如下:

    <!DOCTYPE html>
    <html lang="en">
    <head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title><style>/* 正方形 */.xmbook_red_point_1 {width: 50px;height: 50px;display: inline-block;background-color: red;}/* 圓角正方形 */.xmbook_red_point_2 {width: 50px;height: 50px;display: inline-block;background-color: red;border-radius: 20%;}/* 實心圓 */.xmbook_red_point_3 {width: 50px;height: 50px;/* position: relative; *//* bottom: 2px; *//* left: 4px; */display: inline-block;/* background: url(/zh_CN/htmledition/images/icon_xmbook_red_point513f4c.png); */background-color: red;border-radius: 50%;}/* 空心圓 */.xmbook_red_point_4 {width: 50px;height: 50px;display: inline-block;/* background-color: red; */border-radius: 50%;border: 2px solid;border-color: red;}/* 圈中帶字 */.xmbook_red_point_5 {width: 50px;height: 50px;display: inline-block;/* background-color: red; */border-radius: 50%;border: 2px solid;border-color: red;/* 設置圈中字體大小等 */font: 14px Arial, sans-serif;/* 下面是調整圈中字體位置的 */display: flex;justify-content: center;align-items: center;/* text-align: center; */}</style>
    </head>
    <body><div class="xmbook_red_point_1"></div><div class="xmbook_red_point_2"></div><div><i class="xmbook_red_point_3"></i></div><div><i class="xmbook_red_point_4"></i></div><!-- 圈中帶字 --><div><i class="xmbook_red_point_5">10</i></div><div class="xmbook_red_point_5">12</div></body>
    </html>
    

2. 動態(tài)圓

2.1 一個動態(tài)圓

2.1.1 讓圓漸變

  • 效果如下:
    在這里插入圖片描述

  • 實現(xiàn)代碼如下:

    <!DOCTYPE html>
    <html lang="en">
    <head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title><style>/* 空心圓 */.xmbook_red_point_4 {width: 100px;height: 100px;/* display: inline-block; *//* background-color: red; */border-radius: 50%;/* border: 2px solid; *//* border-color: red; */position: absolute;top: 150px;left: 150px;/* identifier 3s 控制動的頻率 linear infinite 讓動畫不斷漸變不要停transform-origin 控制運動軌跡*/animation: identifier 3s infinite linear;transform-origin: 150px 150px ;}@keyframes identifier{   /*用“0%-100%” 或者 “from-to” 均可以*/  from{transform: rotate(360deg) scale(1);border: 10px solid rgb(143, 182, 222);}to{transform: rotate(360deg) scale(1);border: 10px solid rgb(2, 36, 70);}}</style>
    </head>
    <body><div class="xmbook_red_point_4"></div></body>
    </html>
    

2.1.2 圓漸變8秒后消失

  • 代碼實現(xiàn)如下:

    <!DOCTYPE html>
    <html lang="en">
    <head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title><style>/* 空心圓 */.xmbook_red_point_4 {width: 100px;height: 100px;/* background-color: red; */border-radius: 50%;/* border-color: red; */position: absolute;top: 150px;left: 150px;/* identifier 3s 控制動的頻率 linear infinite 讓動畫不斷漸變不要停transform-origin 控制運動軌跡*/animation: identifier 8s infinite linear;/* transform-origin: 150px 150px ; */}@keyframes identifier {100% {/* transform: rotate(360deg) scale(1); */border: 10px solid rgb(6, 68, 130);}}</style>
    </head>
    <body><div class="xmbook_red_point_4"></div></body>
    </html>
    

2.1.3 轉動的圓(單個圓)

  • 實現(xiàn)效果如下:

css實現(xiàn)圓轉動(單個圓)

  • 實現(xiàn)代碼如下:

    <!DOCTYPE html>
    <html lang="en">
    <head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title><style>/* 空心圓 */.xmbook_red_point_4 {width: 100px;height: 100px;background-color: red;border-radius: 50%;/* border-color: rgb(0, 98, 255); */position: absolute;top: 150px;left: 150px;/* identifier 3s 控制動的頻率 linear infinite 讓動畫不斷漸變不要停transform-origin 控制運動軌跡*/animation: identifier 5s infinite linear;transform-origin: 150px 150px ;}@keyframes identifier {100% {transform: rotate(360deg) scale(1);/* border: 10px solid rgb(6, 68, 130); */}}</style>
    </head>
    <body><div class="xmbook_red_point_4"></div></body>
    </html>
    

2.2 多個動態(tài)圓

  • 實現(xiàn)效果如下:

css實現(xiàn)多個運動的圓

  • 實現(xiàn)代碼如下:
    <!DOCTYPE html>
    <html lang="en">
    <head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title><style>/* 空心圓 */.xmbook_red_point_4 {width: 100px;height: 100px;background-color: rgb(9, 163, 30);border-radius: 50%;/* border-color: rgb(0, 98, 255); */position: absolute;top: 150px;left: 150px;/* identifier 3s 控制動的頻率 linear infinite 讓動畫不斷漸變不要停transform-origin 控制運動軌跡*/animation: identifier 5s infinite linear;transform-origin: 100px 100px ;}/* 如果讓三圓重疊,把下面的 120px 調成 100px 或更小即可 */.xmbook_red_point_4:nth-child(1) {animation: identifier 9s infinite linear;transform-origin: 120px 120px;}.xmbook_red_point_4:nth-child(2) {animation: identifier 9s infinite -3s linear;transform-origin: 120px 120px;}.xmbook_red_point_4:nth-child(3) {animation: identifier 9s infinite -6s linear;transform-origin: 120px 120px;}@keyframes identifier {0% {transform: rotate(0deg) scale(1);border: 10px solid rgb(4, 212, 195);}30% {transform: rotate(120deg) scale(1);border: 10px solid rgb(33, 4, 147);}100% {transform: rotate(360deg) scale(1);border: 10px solid rgb(132, 7, 9);}}</style>
    </head>
    <body><div class="xmbook_red_point_4"></div><div class="xmbook_red_point_4"></div><div class="xmbook_red_point_4"></div>
    </body>
    </html>
    
http://www.risenshineclean.com/news/65795.html

相關文章:

  • 知名網(wǎng)站制作全包怎么建自己的網(wǎng)站?
  • 文化建設的具體措施seo是什么崗位簡稱
  • 重慶哪家在做網(wǎng)站建設競價廣告
  • 網(wǎng)站在哪里搜索北京seo包年
  • 鎮(zhèn)江網(wǎng)站建設找思創(chuàng)網(wǎng)絡今日頭條熱榜
  • 南京越城建設集團有限公司網(wǎng)站小紅書kol推廣
  • 佛山網(wǎng)站排名推廣有沒有永久免費crm
  • 個人網(wǎng)站備案容易嗎最近最新新聞
  • 萬網(wǎng)網(wǎng)站空間服務范圍及費用seo的形式有哪些
  • 拉薩網(wǎng)站制作公司新余seo
  • 長沙市網(wǎng)站推廣公司推廣計劃書范文
  • 網(wǎng)站抓取壓力高重慶排名優(yōu)化整站優(yōu)化
  • 全國哪個餐飲品牌的網(wǎng)站做的好處百度關鍵詞屏蔽
  • 國內互聯(lián)網(wǎng)大廠有哪些合肥seo建站
  • 短視頻素材網(wǎng)站免費大推薦短視頻seo營銷系統(tǒng)
  • 學校網(wǎng)站建設方案模板下載表白網(wǎng)站制作
  • 網(wǎng)站建設需要編程嗎個人怎么注冊自己的網(wǎng)站
  • asp網(wǎng)站跳轉瀏覽器如何給公司做網(wǎng)絡推廣
  • 做pc端的網(wǎng)站首頁尺寸是多少網(wǎng)絡營銷渠道類型有哪些
  • 青島做視頻的網(wǎng)站設計引擎優(yōu)化seo是什么
  • 響應式網(wǎng)站用什么技術做百度搜索廣告
  • 11108給換成119333做網(wǎng)站太原高級seo主管
  • 昆明免費網(wǎng)站制作網(wǎng)絡運營工作內容
  • 蘇州網(wǎng)站建設價格seo排名優(yōu)化關鍵詞
  • 怎么查看網(wǎng)站誰做的北京網(wǎng)絡推廣有哪些公司
  • wordpress博客美化百度關鍵詞優(yōu)化系統(tǒng)
  • 做爰全國網(wǎng)站金融網(wǎng)站推廣圳seo公司
  • 網(wǎng)站開發(fā)用什么軟件甘肅seo網(wǎng)站
  • 如何查詢網(wǎng)站注冊信息查詢免費創(chuàng)建網(wǎng)站
  • 網(wǎng)站做的支付寶接口嗎上海百度seo公司