首页 > 其他分享 >CSS下划线动画

CSS下划线动画

时间:2024-03-13 10:14:26浏览次数:25  
标签:me 动画 love 下划线 background my your CSS size

<template>
  <div class="home">
    <h2 class="title">
      <span>
        From the moment I saw you, my heart began to beat in a different rhythm. Your smile is like a ray of sunshine
        that warms my world and makes me forget all my worries. Your presence fills me with joy, and your absence leaves
        me longing for your return.

        You are my dream come true, and I cherish every moment we spend together. Your kindness, compassion, and wit are
        qualities that I admire deeply. You inspire me to be a better person, and I am grateful for the opportunity to
        grow with you.

        I want to be there for you, through the good times and the bad. I want to share your joys and sorrows, and
        support you in all your endeavors. My love for you is unwavering and true, and I hope that you can see the
        sincerity in my heart.

        In conclusion, I want to say that I love you with all my heart. You are my everything, and I cannot imagine my
        life without you. Please, be mine forever and let us embark on this journey of love together.
      </span>
    </h2>
  </div>
</template>

<script lang="ts">
import { defineComponent } from 'vue';

export default defineComponent({
  name: 'HomeView',
  components: {
  },
});
</script>
<style lang="scss" scoped>
.title {
  color: #333;
  line-height: 2;
  span{
    background: linear-gradient(to right, #732f2b,#146420) no-repeat right bottom;
    background-size: 0 2px;
    cursor: pointer;
    transition: background-size 1s;
  }
  span:hover{
    background-position: left bottom;
    background-size: 100% 2px;
  }
}
</style>

 

标签:me,动画,love,下划线,background,my,your,CSS,size
From: https://www.cnblogs.com/Jansens520/p/18069989

相关文章

  • css 闪烁 左右摆动效果
    代码<!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><title></title><style></style></head><body><divstyle="display:......
  • 02-CSS
    CascadingStyleSheet层叠样式表CSS是一种描述HTML文档样式的语言CSS描述应该如何显示HTML元素CSS的基本原则是内容与样式相分离CSSSelector标签选择器TagSelector作用于所有标签<!DOCTYPEhtml><html> <head> <metacharset="utf-8"> <title>CSS基础:刘......
  • Tailwind CSS Grid
    今天碰到一个问题,就是工作台,要根据权限来自动显示有权限的模块。一开始是纵向的,导致一些问题,也就是说01,05,09显示一列,02,06显示一列。如果02,06有权限的话,显示的是左边空的,右边显示出来,怪怪的。 现在要让模块02,06,比如还多一个05,模块显示,那么就是02,06,05,按顺序,显示出来,那就是02,06......
  • 学习CSS
                                          基础认知CSS的介绍CSS:全称:CascadingStyleSheets,中文译为:层叠样式表CSS的作用:给页面的HTML标签设置样式                                    基......
  • 双轮播加切换动画效果组件
    效果如图,结合了一些动画效果和图片背景,组件开发思路:左侧按钮设置定时器为大轮播,下侧按钮设置定时器为小轮播当轮播到当组的最后一个就继续大轮播,停掉小轮播,并处理一些特殊情况和翻页情况。代码已经注释掉引入图片的路径换成背景颜色,可直接运行。 <template><divcla......
  • 38. 敌人的动画执行逻辑
    本节目标上节只是把逻辑写好了,为了让游戏看起来更好看,我们需要将敌人的动画也加上去实现动画状态机敌人的状态比较简单,只有站立、加Buff、攻击、受伤、死亡这五种状态各状态之间的转换关系如下站立->加Buff通过skill触发,立刻执行因为是从AnyState出来的,所以不......
  • 最常用的CSS
    补充:书写规范:选择器后面要有空格其他直接看:CSS按钮|菜鸟教程(it028.com)www.it028.com/index.htm CSS使用方式:三种1內部式 2行内式:直接在标签中的style属性中写 3外部样式表:通过link标签引入权重大小很明显,越近权重越大:行内>内部>外部引入 CSS三大特性:层叠......
  • CSS鼠标样式(cursor)
    一、CSScursor基本语法cursor属性是什么:指鼠标指针放在一个元素边界范围内时所呈现的光标形状,它包括问号,小手等形状。使用时可以在任何你想要添加的标签里,插入style="cursor:某属性值",也可以在CSS样式中添加。比如:pointer,小手形状help,帮助形状。cursor的属性值有十几种可选......
  • 通达信支撑压力自动画线主图指标公式源码
    {通达信支撑压力自动画线主图指标公式源码}N:=5;STICKLINE(C>O,O,C,3,1),COLORRED;STICKLINE(C>O,H,C,0,0),COLORRED;STICKLINE(C>O,O,L,0,0),COLORRED;STICKLINE(C<o,o,c,3,1),colorff901e;STICKLINE(C<o,h,o,0,0),colorff901e;STICKLINE(C<o,c,l,0,0),colorff901e;......
  • 规则七:避免css表达式
    当页面动态变化时,对于各种事件,例如改变大小,滚动和鼠标移动。这些都会发送请求进行求值,这样就导致了求值进行的非常繁琐。如何避免:使用一次性表达式:将值设置成为固定值,去除css表达式使用事件处理器:这样可以避免在无关事件发生时对表达式的求值。  ......