博客園美化閱讀模式

来源:https://www.cnblogs.com/pythonywy/archive/2019/10/01/11615889.html
-Advertisement-
Play Games

`為了自己能更加好的查看自己的總結以及讓關註我的小可愛們能更加好的學習我弄了閱讀模式` 一.直接上代碼 二.補充hover特效 三.效果展示 ...


為了自己能更加好的查看自己的總結以及讓關註我的小可愛們能更加好的學習我弄了閱讀模式

一.直接上代碼

放在頁腳即可

<style>
    .read_book {
        background: url(https://images.cnblogs.com/cnblogs_com/pythonywy/1516412/o_greedread.png)
    }

    .not_read_book {
        background: url(https://images.cnblogs.com/cnblogs_com/pythonywy/1516412/o_notread.png)
    }

    .read_book_button {
        height: 38px;
        width: 38px;
        border-radius: 50%;
        border: none;
        position: fixed;
        bottom: 22px;
        left: 20px;
        outline: none;
    }

    .read_goend_button {
        background: url(https://images.cnblogs.com/cnblogs_com/pythonywy/1516412/o_goend2.png);
        height: 38px;
        width: 38px;
        border-radius: 50%;
        border: none;
        position: fixed;
        bottom: 67px;
        left: 20px;
        outline: none;
    }

        .read_gotop_button {
        background: url(https://images.cnblogs.com/cnblogs_com/pythonywy/1516412/o_gotop.png);
        height: 38px;
        width: 38px;
        border-radius: 50%;
        border: none;
        position: fixed;
        bottom: 112px;
        left: 20px;
        outline: none;
    }
</style>


<button class="read_gotop_button" style="display: none"></button>
<button class="read_goend_button" style="display: none"></button>
<button class="read_book_button not_read_book" style="display: none"></button>


<script>
    //判斷是否出現正文出現正文的時候出現read按鈕
    var topics = document.querySelector('#topics');
    var read_book_button = document.querySelector('.read_book_button');
    if (topics) {
        read_book_button.style.display = 'block'

    }

    //向上按鈕點擊事件
    var read_gotop_button = document.querySelector('.read_gotop_button');
    read_gotop_button.onclick = function () {
        window.scrollTo(0, 0);
    };

    //向下按鈕點擊事件
    var read_goend_button = document.querySelector('.read_goend_button');
    read_goend_button.onclick = function () {
        window.scrollTo(0,9999);
    };

    read_book_button.onclick = function () {
        //點擊事情跟換類名
        var class_name = this.classList[1];
        class_name == 'read_book' ? this.className = 'read_book_button not_read_book' : this.className = 'read_book_button read_book'

        //更換樣式
        //頭
        var head = document.querySelector('#header');
        //右側
        var sideBar = document.querySelector('#sideBar');
        //評價欄
        var comment_form = document.querySelector('#comment_form');

        //正文無關的內容
        var blog_post_info_block = document.querySelector('#blog_post_info_block');
        var postDesc = document.querySelector('.postDesc');
        var footer = document.querySelector('#footer');
        var blog_comments_placeholder = document.querySelector('#blog-comments-placeholder');

        //向上的按鈕
        var read_gotop_button = document.querySelector('.read_gotop_button');
        //向下的按鈕
        var read_goend_button = document.querySelector('.read_goend_button');
        //文章
        var mainContent = document.querySelector('#mainContent');

        if (class_name == 'read_book') {
            head.style.display = 'block';
            sideBar.style.display = 'block';
            comment_form.style.display = 'block';
            blog_post_info_block.style.display = 'block';
            postDesc.style.display = 'block';
            footer.style.display = 'block';
            blog_comments_placeholder.style.display = 'block';
            read_gotop_button.style.display = 'none';
            read_goend_button.style.display = 'none';
            mainContent.style.width = '94%'
        } else {
            head.style.display = 'none';
            sideBar.style.display = 'none';
            comment_form.style.display = 'none';
            blog_post_info_block.style.display = 'none';
            postDesc.style.display = 'none';
            footer.style.display = 'none';
            blog_comments_placeholder.style.display = 'none';
            read_gotop_button.style.display = 'block';
            read_goend_button.style.display = 'block';
            mainContent.style.width = '120%'
        }
    }
</script>

二.補充hover特效

寫在全局css樣式中

@keyframes pulse {
    25% {
        transform: scale(1.05);
    }

    75% {
        transform: scale(.99);
    }
}
.read_goend_button:hover,.read_gotop_button:hover,.read_book_button:hover {
    animation-name: pulse;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    box-shadow: none;
}

三.效果展示


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1. 對於打開文件對話框處理 #region 打開文件對話框 string StrPath; OpenFileDialog Flag = new OpenFileDialog(); Flag.Multiselect = true;//設置多選 Flag.Title = "打開文件"; //獲取或設置 ...
  • var _setList = (from f in _postgreDbContext.settlements group f by ( new { f.settlement_code })into g select new { deal_time = g.Max(m => m.deal_time)... ...
  • 環境變數 環境變數:每個Shell打開都可以獲得到的變數。 我們知道通過 的方式打開可以讓子進程讀取父進程的變數的值,那怎麼樣才能讓每一個進程都能讀取到變數的值呢? 在這呢,系統有一些預設的配置文件,把變數嵌入到配置文件就可以了。 那麼,系統已經自帶了哪些環境變數呢?我們可以通過 這個命令,查看系統 ...
  • 1. 說明 操作系統:CentOS 7.4 64位 nginx版本:1.16.1 安裝日期:2019/10/01 2. 開始安裝 2.1 安裝運行庫 2.2 安裝openssl 說明:nginx SSL使用。 2.3 安裝pcre 說明:pcre是一個正則表達式庫。 2.4 安裝zlib 說明:zl ...
  • 一、 介紹 Centos8系統更新,新的版本讓人看起來感覺很舒服,這時有人會配置CentOS8系統的網卡使系統上網,就會遇到配置好的網卡不會生效,自己想想和配置CentOS7的時候一個樣啊,CentOS8更新最大的改動就是網卡這一塊了,接下來就配置一下網卡; 二、 配置 網卡配置文件:/etc/sy ...
  • 一、FTP服務概述: FTP伺服器(File Transfer Protocol Server)是在互聯網上提供文件存儲和訪問服務的電腦,它們依照FTP協議提供服務。 FTP(File Transfer Protocol: 文件傳輸協議)作用: Internet 上用來傳送文件的協議 可以在區域網 ...
  • 一.硬碟介面 從整體的角度上,硬碟介面分為IDE、SATA、SCSI和SAS四種,IDE介面硬碟多用於家用產品中,也部分應用於伺服器,SCSI介面的硬碟則主要應用於伺服器市場,而SAS只在高端伺服器上,價格昂貴。二.硬碟種類 SATA硬碟:用SATA介面的硬碟又叫串口硬碟,是以後PC機的主流發展方向 ...
  • 1、版本:一般MSSQL2016以下版本使用。 2、適用小資料庫容量的異地備份;如果是資料庫容量較大,產生的日誌比較多;經測試,9G的資料庫大小,鏡像數月個日誌大小達到400G,硬碟開銷太大。 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...