真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

CSS實(shí)現(xiàn)放大縮小關(guān)閉按鈕的方法-創(chuàng)新互聯(lián)

這篇文章主要介紹CSS實(shí)現(xiàn)放大縮小關(guān)閉按鈕的方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

創(chuàng)新互聯(lián)公司專注于沁源網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供沁源營(yíng)銷型網(wǎng)站建設(shè),沁源網(wǎng)站制作、沁源網(wǎng)頁(yè)設(shè)計(jì)、沁源網(wǎng)站官網(wǎng)定制、微信小程序定制開發(fā)服務(wù),打造沁源網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供沁源網(wǎng)站排名全網(wǎng)營(yíng)銷落地服務(wù)。

這種效果最常見是在我們的瀏覽器頁(yè)面上,先給大家展示效果圖:

CSS實(shí)現(xiàn)放大縮小關(guān)閉按鈕的方法

如上圖所示,使用CSS 繪制上述三個(gè)按鈕:






.windowAction {
  margin-top: -5px;
  -webkit-app-region: no-drag;
  min-width: 70px;
  text-align: right;
  button {
    &:hover {
      color: #a8aabd;
    }
  }
  .min {
    width: 14px;
    height: 14px;
    background-color: transparent;
    font-size: 0;
    margin-right: 18px;
    position: relative;
    color: #878896;
    &:after {
      content: "";
      width: 100%;
      position: absolute;
      left: 0;
      bottom: 0;
      border-bottom: 2px solid;
    }
  }
  .fullpage {
    width: 16px;
    height: 16px;
    color: #878896;
    border: 2px solid;
    background-color: transparent;
    font-size: 0;
    margin-right: 18px;
  }
  .close {
    width: 18px;
    height: 18px;
    font-size: 0;
    background-color: transparent;
    position: relative;
    color: #878896;
    transform: rotate(45deg) translate(-2px, 2px);
    &:before,
    &:after {
      content: "";
      position: absolute;
    }
    &:before {
      width: 100%;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      border-top: 2px solid;
    }
    &:after {
      height: 100%;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      border-left: 2px solid;
    }
  }
}

以上是“CSS實(shí)現(xiàn)放大縮小關(guān)閉按鈕的方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


本文題目:CSS實(shí)現(xiàn)放大縮小關(guān)閉按鈕的方法-創(chuàng)新互聯(lián)
轉(zhuǎn)載來(lái)源:http://weahome.cn/article/dsdjso.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部