博客首页效果

这篇具有很好参考价值的文章主要介绍了博客首页效果。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

博客首页效果
学习来自风`宇blog的博客首页效果文章来源地址https://www.toymoban.com/news/detail-411117.html

  • 全部用的基本上都是原生的html,css,js
  • 特别是flex布局的使用,主轴方向可以是横轴,也可以是纵轴,弹性项还可可以使用百分比
  • sticky粘性布局,作为侧边栏,它不会超出右边的整体范围,也不会丢失原来所占的空间(相对定位特性),能固定在离浏览器窗口10px的位置不动(固定定位)
  • 只要给元素加上动画,在页面一加载的时候,就会播放动画。可以在浏览器样式控制台,点击取消或勾选animation选项,可以查看动画效果,这个取消或勾选的动作就相当于是js在操作。
  • 添加打字机效果
  • 没有作响应式…
<style lang="scss">
@import url('//at.alicdn.com/t/c/font_4004562_8c8umr3qxuh.css');

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

.shadow {
    box-shadow: 0 4px 8px 6px rgba(7, 17, 27, .06) !important;
}

a {
    color: inherit;
}

.verticle-line {
    margin: 3px;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    /* 背景渐变 */
    background: linear-gradient(90deg, rgba(247, 149, 51, .1), rgba(243, 112, 85, .1) 15%, rgba(239, 78, 123, .1) 30%, rgba(161, 102, 171, .1) 44%, rgba(80, 115, 184, .1) 58%, rgba(16, 152, 173, .1) 72%, rgba(7, 179, 155, .1) 86%, rgba(109, 186, 130, .1));
}

/* 封面图下移效果 */
@keyframes slidedown {
    0% {
        opacity: 0.3;
        transform: translateY(-60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.slidedown {
    animation: slidedown 1s;
}

/* 内容上移效果 */
@keyframes slideup {
    0% {
        opacity: 0.3;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.slideup {
    animation: slideup 1s;
}

/* 从小变大效果 */
@keyframes scaleup {
    0% {
        transform: scale(0.3);
    }

    100% {
        transform: scale(1);
    }
}

.scaleup {
    animation: scaleup 1s;
}

/* 箭头下滑 */
@keyframes arrowSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    50% {
        opacity: 1;
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* 光标闪烁 */
@keyframes shanshuo {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* 箭头滑向右边 */
@keyframes arrowSlideRight {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    50% {
        opacity: 1;
        transform: translateX(0px);
    }

    100% {
        opacity: 0;
        transform: translateX(5px);
    }
}

.arrow-right-move {
    animation: arrowSlideRight 3s infinite;
}

/* 头像旋转 */
@keyframes rotateAround {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.rotateForever {
    animation: rotateAround 5s linear infinite;
}

.avatar:hover {
    animation-play-state: paused;
}

/* 公告摆动 */
@keyframes wave {
    0% {
        transform: rotate(350deg);
    }

    100% {
        transform: rotate(370deg);
    }
}

.wave {
    animation: wave 1.3s infinite ease-in-out alternate-reverse;
    transform-origin: 50% 0;
    display: inline-block;
}

.shouye-cover {
    height: 100vh;
    width: 100vw;
    background-image: url(@/assets/bg1.jpg);
    background-size: cover;
    background-position: center;

    display: flex;

    color: #eee;

    .shouye-intro {
        margin-top: 40vh;
        width: 100%;
        text-align: center;

        font-size: 18px;

        .shouye-title {
            margin-bottom: 10px;
        }

        .shouye-desc {
            span {
                animation: shanshuo 1s infinite;
            }
        }

    }

    .arrow-down {
        position: absolute;
        width: 100%;
        height: 90px;
        bottom: 0;
        text-align: center;

        i {
            font-size: 32px;
            cursor: pointer;
            display: inline-block;
            animation: arrowSlideDown 2s infinite;
        }
    }


}

.shouye-content {
    max-width: 1200px;
    // border: 1px solid red;
    margin: 0 auto 20px;
    padding: 10px;
    display: flex;
    color: #595655;

    .content-wrapper {
        width: 75%;
        padding: 12px;
        // border: 1px solid red;

        .shuoshuo {
            background-color: #fff;
            padding: 10px;
            display: flex;
            cursor: pointer;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .content:last-child {
            .article-item {
                margin-bottom: 0;
            }
        }

        .content {

            .article-item {
                margin-bottom: 20px;
                display: flex;
                align-items: center;
                height: 300px;
                background-color: #fff;
                border-radius: 8px;
                overflow: hidden;

                .article-cover {
                    width: 45%;
                    height: 100%;

                    overflow: hidden;

                    img {
                        width: 100%;
                        height: 100%;
                        transition: all 0.5s;

                        &:hover {
                            transform: scale(1.1);
                        }
                    }
                }

                .article-info {
                    width: 55%;
                    margin: 0 20px;

                    .article-title {
                        font-size: 24px;
                        cursor: pointer;
                        transition: all 0.3s;

                        &:hover {
                            color: #30adff;
                        }
                    }

                    .article-intro {
                        font-size: 12px;
                        margin: 8px 0;
                        color: #a7a7a7;
                        display: inline-flex;
                        align-items: center;
                        margin-left: 5px;

                        i {
                            margin-right: 5px;
                        }

                    }

                    .article-text {
                        text-indent: 2em;
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 3;
                        overflow: hidden;
                    }
                }

                .article-text {
                    word-break: break-all;
                }
            }
        }
    }

    .sider-wrapper {
        width: 25%;
        // border: 1px solid red;
        padding: 12px;

        .sider-sticky {
            position: sticky;
            top: 20px;
        }

        .author {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.3);
            line-height: 1.5;
            margin-bottom: 15px;

            .avatar {
                width: 116px;
                height: 116px;
                display: block;
                border-radius: 50%;
                overflow: hidden;
                border: 2px solid rgb(230, 230, 230);

                img {
                    width: 100%;
                    height: 100%;
                }
            }

            .author-name {
                color: #4c4948;
                font-size: 24px;

            }

            .author-bio {
                font-size: 14px;
                margin-top: 10px;
            }

            .author-statis {
                display: flex;
                margin-top: 10px;
                width: 100%;
                padding: 0 10px;

                .author-statis-item {
                    flex: 1;
                    display: flex;
                    flex-direction: column;
                    align-items: center;

                    .author-statis-item-name {
                        margin-bottom: 10px;
                    }
                }
            }

            .join-label {
                height: 30px;
                background-color: #49b1f5;
                width: 100%;
                text-align: center;
                line-height: 30px;
                color: #fff;
                font-size: 0.845em;
                margin-top: 10px;
                cursor: pointer;
                z-index: 1;

                position: relative;

                i {
                    font-size: 0.875em;
                }

                &:hover {
                    animation-name: pulse;
                }

            }

            .author-links {
                margin-top: 10px;
                display: flex;

                a {
                    // border: 1px solid red;
                    display: block;
                    margin: 0 5px;
                    height: 1.8em;
                    width: 1.8em;
                    display: flex;
                    align-items: center;
                    justify-content: center;


                    i {
                        font-size: 1.6em;

                        &.gitee {
                            font-size: 1.4em !important;
                            color: #c71d23;
                        }

                        &.weibo {
                            font-size: 1.8em !important;
                        }

                        &.qq {
                            color: #08bdfd;
                        }
                    }
                }

            }
        }

        .notice {
            padding: 20px;
            background-color: #fff;
            margin-bottom: 15px;
            border-radius: 8px;

            line-height: 2;

            .notice-header {
                margin-bottom: 5px;
            }

            i {
                margin-right: 5px;
            }
        }

        .site-info {
            padding: 20px;
            background-color: #fff;
            border-radius: 8px;

            line-height: 2;

            .site-info-header {
                margin-bottom: 5px;
            }

            i {
                margin-right: 5px;
            }

            .site-info-content {
                .site-info-item {
                    display: flex;
                    justify-content: space-between;
                }
            }

        }

    }

}

.shouye-footer {
    height: 136px;
    background: linear-gradient(-45deg,#ee7752,#ce3e75,#23a6d5,#23d5ab);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    p {
        line-height: 2em;
        color: #eee;
        font-size: 0.875em;
        user-select: none;
    }
}
</style>

<template>
    <div class="shouye">
        <navbar />
        <div class="shouye-cover slidedown">
            <div class="shouye-intro">
                <h1 class="shouye-title scaleup">PSCOOL</h1>
                <div :class="['scaleup',{'shouye-desc': shouyeDesc}]">
                    <span v-html="words"></span>
                    <span>|</span>
                </div>
            </div>
            <div class="arrow-down" @click="scrollDown">
                <i class="iconfont icon-a-xiala2"></i>
            </div>
        </div>
        <div class="shouye-content slideup">

            <div class="content-wrapper">
                <a href="#" class="shuoshuo shadow scaleup">
                    <i class='iconfont icon-message'></i>
                    <div style="width: 100%;text-align: center;">follow your heart and get it~</div>
                    <i class='iconfont icon-youshuangjiantou arrow-right-move'></i>
                </a>

                <div v-for="i of 5" :key="i" class="content">
                    <div class="article-item shadow scaleup">
                        <a href="#" class="article-cover">
                            <img src="@/assets/article-cover.jpg" alt="">
                        </a>
                        <div class="article-info">
                            <a href="#" class="article-title">@Configuration注解的full模式和lite模式</a>
                            <div class="article-intro">
                                <i class="iconfont icon-rili"></i>
                                <span>2023-04-01</span>
                                <span class="verticle-line">|</span>
                                <i class="iconfont icon-wenjian"></i><span>默认</span>
                                <span class="verticle-line">|</span>
                                <i class="iconfont icon-biaoqian"></i><span>默认</span>
                            </div>
                            <div class="article-text">
                                标注有@Configuration或者@Configuration(proxyBeanMethods =
                                true)的类被称为Full模式的配置类,proxyBeanMethods默认为TRUE。在常见的场景中,@Bean方法都会在标注有@Configuration的类中声明,以确保总是使用“Full模式”,这么一来,交叉方法引用会被重定向到容器的生命周期管理,所以就可以更方便的管理Bean依赖。
                            </div>
                        </div>
                    </div>
                </div>
            </div>


            <div class="sider-wrapper">

                <div class="sider-sticky">

                    <div class="author shadow scaleup">
                        <a href="#" class="avatar rotateForever"  style="width: 56px;height: 56px;">
                            <img src="@/assets/avatar.jpg" alt="">
                        </a>
                        <div class="author-name">
                            zzhua
                        </div>
                        <div class="author-bio">
                            热爱技术, 一点点的学习
                        </div>
                        <div class="author-statis">
                            <a href="#" class="author-statis-item">
                                <div class="author-statis-item-name">文章</div>
                                <div>9</div>
                            </a>
                            <a href="#" class="author-statis-item">
                                <div class="author-statis-item-name">分类</div>
                                <div>6</div>
                            </a>
                            <a href="#" class="author-statis-item">
                                <div class="author-statis-item-name">标签</div>
                                <div>7</div>
                            </a>
                        </div>

                        <div class="join-label animate__animated">
                            <i class="iconfont icon-24gl-bookmark"></i>
                            加入书签
                        </div>

                        <div class="author-links">
                            <a href="#">
                                <i class="iconfont icon-QQ-circle-fill qq"></i>
                            </a>
                            <a href="https://gitee.com/zzhua195" target="_blank">
                                <i class="iconfont icon-gitee-fill-round gitee"></i>
                            </a>
                            <a href="#">
                                <i class="iconfont icon-weibo weibo"></i>
                            </a>
                        </div>

                    </div>

                    <div class="notice shadow scaleup">
                        <div class="notice-header">
                            <i class="iconfont icon-gonggao wave"></i>公告
                        </div>
                        <div class="notice-content">
                            欢迎来到我的博客~
                        </div>
                    </div>

                    <div class="site-info shadow scaleup">
                        <div class="site-info-header">
                            <i class="iconfont icon-tongji"></i>网站资讯
                        </div>
                        <div class="site-info-content">
                            <div class="site-info-item">
                                <span>运行时间: </span>
                                <span>48天17时19分25秒</span>
                            </div>
                            <div class="site-info-item">
                                <span>总访问量: </span>
                                <span>102</span>
                            </div>
                        </div>
                    </div>
                </div>

            </div>

        </div>
        <div class="shouye-footer">
            <p>&copy;2023 - 2023 By zzhua</p>
            <p>备案号: xxx</p>
        </div>
    </div>
</template>

<script>
import Navbar from './Navbar.vue';
export default {
    name: 'Shouye',
    data() {
        return {
            typeWords: '南朝四百八十寺, 多少楼台烟雨中',
            words: '',
            i: 0,
            shouyeDesc: false
        }
    },
    mounted() {
        this.typing()
    },
    methods: {
    	typing() {
            if(this.i <= this.typeWords.length) {
                this.words = this.typeWords.slice(0,this.i)
                this.i++
                let timeout = setTimeout(()=>{
                    this.typing()
                },200)
            } else {
                this.shouyeDesc = true
            }
        },
        scrollDown() {
            window.scroll({
                top: document.documentElement.clientHeight,
                behavior: 'smooth'
            })
        }
    },
    components: {
        Navbar
    }
}
</script>


到了这里,关于博客首页效果的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 从零用VitePress搭建博客教程(4) – 如何自定义首页布局和主题样式修改?

    接上一节: 从零用VitePress搭建博客教程(3) - VitePress页脚、标题logo、最后更新时间等相关细节配置 有时候觉得自带的样式不好看,想自定义,首先我们在docs/.vitePress新建一个theme文件夹,用来存放自定义布局和主题修改的相关文件,如下所示 theme下再新建custom.css 和 index.js c

    2024年02月08日
    浏览(49)
  • 微信小程序首页、界面布局、3D轮播图效果(示例二)

    使用swiper实现3D轮播图效果,自定义顶部状态栏,具体代码: 1、js代码 2、wxml代码 3、wxss代码 4、json代码 如需要下载完整版,包含监听事件、图片文件等,请前往下方链接,下载完整版,下载后直接使用微信开发者工具打开即可,下载链接为: 小程序完整版界面(示例二)

    2024年02月10日
    浏览(58)
  • 本博客的SimpleMemory博客皮肤设置教程及效果

    本博客皮肤设计来自一位超级大佬所做 大佬的GitHub项目地址:https://github.com/BNDong/Cnblogs-Theme-SimpleMemory 大佬的博客园地址:https://www.cnblogs.com/BNDong 开通博客园账号并且开通博客园后台设置的JS权限,并勾选博客皮肤为 SimpleMemory 。 打开eMemory 的GitHub地址,找到dist文件夹点进去

    2024年02月05日
    浏览(41)
  • 【微信小程序】-- uni-app 项目-- 购物车 -- 首页 - 轮播图效果(五十二)

    💌 所属专栏:【微信小程序开发教程】 😀 作  者:我是夜阑的狗🐶 🚀 个人简介:一个正在努力学技术的CV工程师,专注基础和实战分享 ,欢迎咨询! 💖 欢迎大家:这里是CSDN,我总结知识的地方,喜欢的话请三连,有问题请私信 😘 😘 😘   大家好,又见面了,

    2023年04月18日
    浏览(76)
  • 机器学习&&深度学习——BERT(来自transformer的双向编码器表示)

    👨‍🎓作者简介:一位即将上大四,正专攻机器学习的保研er 🌌上期文章:机器学习深度学习——transformer(机器翻译的再实现) 📚订阅专栏:机器学习深度学习 希望文章对你们有所帮助 我们首先理解一下相关的一些概念,首先我们知道在自然语言系统中,词是意义的基

    2024年02月12日
    浏览(45)
  • 学区块链智能合约?来自培训学校内部的学习计划

    大家好,我是赛联区块链教育张群。每天都有来问的,张老师我钱不够,想自己学,怎么学?有学习大纲吗?好吧!谁让张老师是个信仰者和布道者呢。计划来了,拿去不谢!假如你每天能够投入2个小时的学习时间,我们可以将智能合约开发的学习设定为渐进形式。整个学习

    2024年02月22日
    浏览(38)
  • 小程序学习基础(首页展示)

    2024年02月01日
    浏览(45)
  • Azure 机器学习 - 使用 ONNX 对来自 AutoML 的计算机视觉模型进行预测

    本文介绍如何使用 Open Neural Network Exchange (ONNX) 对从 Azure 机器学习中的自动机器学习 (AutoML) 生成的计算机视觉模型进行预测。 关注TechLead,分享AI全维度知识。作者拥有10+年互联网服务架构、AI产品研发经验、团队管理经验,同济本复旦硕,复旦机器人智能实验室成员,阿里云

    2024年02月05日
    浏览(42)
  • 小程序进阶学习(音乐首页-轮播图)

    轮播图 样式   轮播图的重点是轮播图的大小,因为每个手机的屏幕大小不一样,但是轮播图的大小是固定的就需要一些技术获取到手机的轮播图大小,然后再设置图片的大小和轮播图边框的大小。 页面代码

    2024年01月22日
    浏览(38)
  • WPF实战学习笔记26-首页导航

    修改UI,添加单击行为,并绑定导航命令 修改文件:Mytodo.Views.IndexView.xaml ,在导航梯形添加内容 添加导航命令,并初始化 修改文件:indexviewmodel.cs 添加导航区域变量,并初始化 修改文件:indexviewmodel.cs 添加导航方法 TaskBars添加对应的导航区域 修改OnNavigate方法 当为“已完成

    2024年02月15日
    浏览(34)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包