• 每日分享html之2个加载、2个button、1个鼠标定向


    我是c站的一个小博主,近期我会每天分享前端知识包括(原生的web语句,以及vue2和vue3,微信小程序的写法及知识点)本篇文章收录于html特效专栏中,如果想每天在我这学到一些东西,请关注我并订阅专栏,每天都分享前端知识哦~

    欢迎关注b站:小淼前端

    有更多的前端特效,及视频讲解+源代码可领取哦~

    欢迎关注b站:小淼前端

    有更多的前端特效,及视频讲解+源代码可领取哦~

    目录

    我是c站的一个小博主,近期我会每天分享前端知识包括(原生的web语句,以及vue2和vue3,微信小程序的写法及知识点)本篇文章收录于html特效专栏中,如果想每天在我这学到一些东西,请关注我并订阅专栏,每天都分享前端知识哦~

    欢迎关注b站:小淼前端

    有更多的前端特效,及视频讲解+源代码可领取哦~

    欢迎关注b站:小淼前端

    有更多的前端特效,及视频讲解+源代码可领取哦~

    前端是做什么的?

    前端的特效视觉:

    1.弹跳方块加载

    2.按钮悬浮效果

    3.始终飞向鼠标的纸飞机

    4.篮球弹跳加载

    5.马赛克背景的按钮特效


    欢迎关注b站:小淼前端

    有更多的前端特效,及视频讲解+源代码可领取哦~

    欢迎关注b站:小淼前端

    有更多的前端特效,及视频讲解+源代码可领取哦~

     

    前端是做什么的?

    1.前端工程师主要利用HMTL与CSS建构页面(其中html构建骨架,css构建样式),用JavaScript获取后端数据以及完善交互以及用户体验。
    2.通俗来讲,前端在一个项目里,拿到UI设计师设计的设计稿,然后实现UI设计师设计稿,调用后端程序员给的数据接口以获取数据,然后测试,最后部署上线。
    3.前端可以对设计图负责,大部分情况下,不需要特别的去理解业务逻辑,因为我们90后都是玩着十几年手机电脑长大的,十几年的经验足够我们在潜意识里想明白应该怎么做,怎么去一步步实现,会有什么意外情况。
    4.我感觉前端发展有个很大的缺陷----晋升问题. 正如第三点所言,作为领导必须对项目有足够的了解,显然是要重点包括业务逻辑,这点上,后端开发者需要涉及数据库逻辑,是必须要跟业务逻辑打交道的(重中之重),因此,大部分的领导岗位都是后端开发者更有晋升的机会。当然,个别公司有专门的前端组长(这也不算什么),如果说前端开发者在自己工作范围之外还要腾出时间去研究业务逻辑,属实是觉得出力不讨好(因为这样的操作需要持续很久才能看出效果),而且再怎么研究业务逻辑也不会比每时每刻跟业务逻辑打交道的后端开发者了解更多。说实在的,大部分情况下,前端在配合后端进行开发.后端需要了解业务逻辑,要跟领导和客户商量细节,露脸机会很大,在老板面前刷脸次数众多。这些都是拉开前后端程序员晋升机会差距的因素。

    前端的特效视觉:

    层次结构的表现

    动态效果,如缩放,覆盖,滑出网页或单个视觉元素,可帮助用户理解网页信息架构。通常是通过转场和菜单来展开网页。

    表现层级关系

    为了展现层与层的关系,是抽屉,是打开,还是平级切换等等。让用户知道这个界面和上一个、下一个的关系。

    清晰明确

    动效可以清晰地表明各种数据块中间的逻辑结构,即使在数据高度饱和的情况下也能使一切从观感上有组织性。

    添加了图层

    在网站制作过程中加上特效,每个元素都在用户滚动页面或者是鼠标经过的地方有动态效果,就像在平面层上多出了一个动态层,这样看起来更加有层次感。

    我想借此专栏发布的内容帮助那些正在入坑前端的家人们,同时作为我以后复习的笔记,希望我们可以互相帮助,共同加油!!!

    1.弹跳方块加载

     代码:

    1. html>
    2. <html>
    3. <head>
    4. <meta http-equiv="content-type" content="text/html; charset=utf-8">
    5. <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
    6. <title>弹跳方块加载title>
    7. <style>
    8. *{
    9. /* 初始化 */
    10. margin: 0;
    11. padding: 0;
    12. }
    13. body{
    14. /* 100%窗口高度 */
    15. height: 100vh;
    16. /* 弹性布局 水平+垂直居中 */
    17. display: flex;
    18. justify-content: center;
    19. align-items: center;
    20. background-color: #000;
    21. }
    22. .loader{
    23. /* 相对定位 */
    24. position: relative;
    25. /* 自定义属性--c */
    26. --c: #48c0a3;
    27. }
    28. .loader .square{
    29. width: 200px;
    30. height: 200px;
    31. /* 通过var函数调用自定义属性--c */
    32. background-color: var(--c);
    33. /* 阴影 外发光效果 */
    34. box-shadow: 0 0 15px var(--c),
    35. 0 0 30px var(--c),
    36. 0 0 60px var(--c);
    37. /* 设置旋转元素的基点位置 */
    38. transform-origin: bottom right;
    39. /* 执行动画: 动画名 时长 线性 无限次播放 */
    40. animation: roll 1s linear infinite;
    41. }
    42. /* 黑色遮罩(挖空方形) */
    43. .loader .square::before{
    44. content: "";
    45. width: 150px;
    46. height: 150px;
    47. /* 绝对定位 居中 */
    48. position: absolute;
    49. left: 50%;
    50. top: 50%;
    51. transform: translate(-50%,-50%);
    52. background-color: #000;
    53. /* 阴影 内发光效果 */
    54. box-shadow: inset 0 0 15px var(--c),
    55. inset 0 0 30px var(--c),
    56. inset 0 0 60px var(--c);
    57. }
    58. .loader .text{
    59. position: absolute;
    60. width: 300px;
    61. height: 40px;
    62. line-height: 40px;
    63. left: -40px;
    64. bottom: -80px;
    65. /* 溢出隐藏 */
    66. overflow: hidden;
    67. }
    68. .loader .text p{
    69. color: var(--c);
    70. font-size: 24px;
    71. white-space: nowrap;
    72. /* 文字发光效果 */
    73. text-shadow: 0 0 2px var(--c),
    74. 0 0 4px var(--c),
    75. 0 0 8px var(--c);
    76. position: absolute;
    77. /* 默认移出可视范围 */
    78. left: 100%;
    79. /* 执行动画 */
    80. animation: move 3.5s linear infinite;
    81. }
    82. /* 定义动画 */
    83. /* 方块旋转动画 */
    84. @keyframes roll {
    85. 100%{
    86. transform: translateX(-100%) rotateZ(90deg);
    87. }
    88. }
    89. /* 文本移动动画 */
    90. @keyframes move {
    91. 100%{
    92. left: -50%;
    93. }
    94. }
    95. style>
    96. head>
    97. <body>
    98. <div class="loader">
    99. <div class="square">div>
    100. <div class="text">
    101. <p>拼命加载中...p>
    102. div>
    103. div>
    104. body>
    105. html>

    2.按钮悬浮效果

     代码:

    1. html>
    2. <html>
    3. <head>
    4. <meta http-equiv="content-type" content="text/html; charset=utf-8">
    5. <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
    6. <title>3d方向感效果title>
    7. <style>
    8. *{
    9. /* 初始化 */
    10. margin: 0;
    11. padding: 0;
    12. }
    13. body{
    14. /* 100%窗口高度 */
    15. height: 100vh;
    16. /* 弹性布局 水平+垂直居中 */
    17. display: flex;
    18. justify-content: center;
    19. align-items: center;
    20. /* 渐变背景 */
    21. background: linear-gradient(200deg,#ffecd2,#fcb69f);
    22. }
    23. .container{
    24. /* 定义3D元素距视图的距离 */
    25. perspective: 320px;
    26. }
    27. .btn{
    28. display: block;
    29. margin: 40px 0;
    30. width: 240px;
    31. height: 80px;
    32. border: none;
    33. background-color: #fda085;
    34. color: #fff;
    35. font-size: 18px;
    36. border-radius: 6px;
    37. outline: none;
    38. cursor: pointer;
    39. /* 动画过渡 */
    40. transition: 0.3s;
    41. }
    42. .btn:nth-child(1):hover{
    43. /* 沿X轴旋转15度 */
    44. transform: rotateX(15deg);
    45. /* 阴影 */
    46. box-shadow: 0 15px 15px rgba(225,95,65,0.56);
    47. }
    48. .btn:nth-child(2):hover{
    49. /* 沿X轴旋转-15度 */
    50. transform: rotateX(-15deg);
    51. /* 阴影 */
    52. box-shadow: 0 -15px 15px rgba(225,95,65,0.56);
    53. }
    54. .btn:nth-child(3):hover{
    55. /* 沿Y轴旋转15度 */
    56. transform: rotateY(15deg);
    57. /* 阴影 */
    58. box-shadow: -15px 0 15px rgba(225,95,65,0.56);
    59. }
    60. .btn:nth-child(4):hover{
    61. /* 沿Y轴旋转-15度 */
    62. transform: rotateY(-15deg);
    63. /* 阴影 */
    64. box-shadow: 15px 0 15px rgba(225,95,65,0.56);
    65. }
    66. style>
    67. head>
    68. <body>
    69. <div class="container">
    70. <button class="btn">求点赞button>
    71. <button class="btn">求关注button>
    72. <button class="btn">求收藏button>
    73. <button class="btn">求分享button>
    74. div>
    75. body>
    76. html>

    3.始终飞向鼠标的纸飞机

     代码:

    1. html>
    2. <html>
    3. <head>
    4. <meta http-equiv="content-type" content="text/html; charset=utf-8">
    5. <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
    6. <title>始终飞向鼠标的纸飞机title>
    7. <link href="https://cdn.bootcdn.net/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
    8. <style>
    9. *{
    10. /* 初始化 */
    11. margin: 0;
    12. padding: 0;
    13. }
    14. body{
    15. /* 100%窗口高度 */
    16. height: 100vh;
    17. /* 渐变背景 */
    18. background: linear-gradient(200deg,#fbff00,#fb0000);
    19. }
    20. #plane{
    21. color: #fff;
    22. font-size: 70px;
    23. /* 绝对定位 */
    24. position: absolute;
    25. /* 弹性布局 水平+垂直居中 */
    26. display: flex;
    27. justify-content: center;
    28. align-items: center;
    29. }
    30. style>
    31. head>
    32. <body>
    33. <div id="plane">
    34. <i class="fa fa-paper-plane" aria-hidden="true">i>
    35. div>
    36. <script>
    37. let plane=document.getElementById('plane');
    38. let deg=0,ex=0,ey=0,vx=0,vy=0,count=0;
    39. window.addEventListener('mousemove',(e)=>{
    40. ex=e.x-plane.offsetLeft-plane.clientWidth/2;
    41. ey=e.y-plane.offsetTop-plane.clientHeight/2;
    42. deg=360*Math.atan(ey/ex)/(2*Math.PI)+45;
    43. if(ex<0){
    44. deg+=180;
    45. }
    46. count=0;
    47. })
    48. function draw(){
    49. plane.style.transform='rotate('+deg+'deg)';
    50. if(count<100){
    51. vx+=ex/100;
    52. vy+=ey/100;
    53. }
    54. plane.style.left=vx+'px';
    55. plane.style.top=vy+'px';
    56. count++;
    57. }
    58. setInterval(draw, 1);
    59. script>
    60. body>
    61. html>

    4.篮球弹跳加载

     代码:

    1. html>
    2. <html>
    3. <head>
    4. <meta http-equiv="content-type" content="text/html; charset=utf-8">
    5. <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
    6. <title>篮球弹跳加载title>
    7. <style>
    8. *{
    9. /* 初始化 */
    10. margin: 0;
    11. padding: 0;
    12. }
    13. body{
    14. /* 100%窗口高度 */
    15. height: 100vh;
    16. /* 弹性布局 水平+垂直居中 */
    17. display: flex;
    18. justify-content: center;
    19. align-items: center;
    20. /* 渐变背景 */
    21. background: linear-gradient(200deg,#d5ec00,#1eff00);
    22. }
    23. .ball-box{
    24. width: 150px;
    25. height: 150px;
    26. /* 执行动画:动画名 时长 减速 先反向再正向 无限次播放 */
    27. animation: bounce 0.6s ease-out alternate-reverse infinite;
    28. }
    29. .ball{
    30. width: 150px;
    31. height: 150px;
    32. border-radius: 50%;
    33. background-color: #f7972b;
    34. box-shadow: 0 0 2px 4px #fff;
    35. /* 溢出隐藏 */
    36. overflow: hidden;
    37. /* 绝对定位 */
    38. position: absolute;
    39. z-index: 1;
    40. /* 执行动画:动画名 时长 线性 无限次播放 */
    41. animation: roll 3s linear infinite;
    42. }
    43. .ball::before,.ball::after{
    44. content: "";
    45. position: absolute;
    46. width: 100%;
    47. height: 100%;
    48. border-radius: 50%;
    49. border: 5px solid #fff;
    50. /* 加一点点模糊 */
    51. filter: blur(0.5px);
    52. }
    53. .ball::before{
    54. left: -70%;
    55. }
    56. .ball::after{
    57. right: -70%;
    58. }
    59. .ball .a,.ball .b{
    60. position: absolute;
    61. left: 50%;
    62. top: 50%;
    63. transform: translate(-50%,-50%);
    64. background-color: #fff;
    65. }
    66. .ball .a{
    67. width: 200px;
    68. height: 5px;
    69. }
    70. .ball .b{
    71. width: 5px;
    72. height: 200px;
    73. }
    74. .shadow{
    75. width: 150px;
    76. height: 5px;
    77. border-radius: 50%;
    78. background-color: rgba(0,0,0,0.4);
    79. position: absolute;
    80. bottom: 25vh;
    81. z-index: -1;
    82. filter: blur(1.5px);
    83. animation: shadow 0.6s ease-out alternate-reverse infinite;
    84. }
    85. /* 定义动画 */
    86. /* 篮球弹跳的动画 */
    87. @keyframes bounce {
    88. 0%{
    89. transform: translateY(15vh);
    90. }
    91. 100%{
    92. transform: translateY(-20vh);
    93. }
    94. }
    95. /* 篮球旋转的动画 */
    96. @keyframes roll {
    97. 0%{
    98. transform: rotate(0deg);
    99. }
    100. 100%{
    101. transform: rotate(360deg);
    102. }
    103. }
    104. /* 阴影的动画 */
    105. @keyframes shadow {
    106. 0%{
    107. transform: scale(0.15,1.25);
    108. }
    109. 100%{
    110. transform: scale(1.25,0.75);
    111. }
    112. }
    113. style>
    114. head>
    115. <body>
    116. <div class="ball-box">
    117. <div class="ball">
    118. <div class="a">div>
    119. <div class="b">div>
    120. div>
    121. div>
    122. <div class="shadow">div>
    123. body>
    124. html>

    5.马赛克背景的按钮特效

     代码:

    1. html>
    2. <html>
    3. <head>
    4. <meta http-equiv="content-type" content="text/html; charset=utf-8">
    5. <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
    6. <title>马赛克背景的按钮特效title>
    7. <style>
    8. *{
    9. /* 初始化 */
    10. margin: 0;
    11. padding: 0;
    12. }
    13. body{
    14. /* 100%窗口高度 */
    15. height: 100vh;
    16. /* 弹性布局 水平+垂直居中 */
    17. display: flex;
    18. flex-direction: column;
    19. justify-content: center;
    20. align-items: center;
    21. /* 渐变背景 */
    22. background: linear-gradient(200deg,#485563,#29323c);
    23. }
    24. .button{
    25. width: 250px;
    26. height: 80px;
    27. border: 2px solid #fff;
    28. display: flex;
    29. justify-content: center;
    30. align-items: center;
    31. border-radius: 10px;
    32. margin: 15px 0;
    33. cursor: pointer;
    34. /* 溢出隐藏 */
    35. overflow: hidden;
    36. /* 相对定位 */
    37. position: relative;
    38. }
    39. .button p{
    40. font-size: 22px;
    41. font-weight: bold;
    42. /* 绝对定位 */
    43. position: absolute;
    44. /* 动画过渡 */
    45. transition: 1s;
    46. }
    47. .button .back{
    48. width: 100%;
    49. height: 100%;
    50. position: absolute;
    51. }
    52. .button .back span{
    53. background-color: #fff;
    54. display: block;
    55. float: left;
    56. }
    57. .button:hover div span{
    58. /* 通过var函数调用自定义属性--c,设置背景颜色 */
    59. background-color: var(--c);
    60. }
    61. .button:hover p{
    62. color: #fff;
    63. }
    64. style>
    65. head>
    66. <body>
    67. <div class="button">
    68. <div class="back" style="--c:#e74c3c;">div>
    69. <p>评论p>
    70. div>
    71. <div class="button">
    72. <div class="back" style="--c:#2ecc71;">div>
    73. <p>关注p>
    74. div>
    75. <div class="button">
    76. <div class="back" style="--c:#3498db;">div>
    77. <p>收藏p>
    78. div>
    79. <div class="button">
    80. <div class="back" style="--c:#9b59b6;">div>
    81. <p>转发p>
    82. div>
    83. <script>
    84. // 获取所有的.back层
    85. let backs=document.getElementsByClassName('back');
    86. // 遍历所有的.back层,并添加span元素作为背景
    87. for(let i=0;ilength;i++){
    88. // 当前的.back层
    89. let back=backs[i];
    90. // 宽高尺寸采用.back层的1/25宽度
    91. let width=back.clientWidth/25;
    92. let height=width;
    93. // 计算所需的背景块数量
    94. let count=25*parseInt(back.clientHeight/height);
    95. for(let j=0;j
    96. // 根据计算结果并添加对应数量的span元素
    97. let span=document.createElement('span');
    98. span.style.width=width+'px';
    99. span.style.height=width+'px';
    100. // 设置动画过渡:时长 线性 动画延迟
    101. span.style.transition='0.2s linear '+Math.random()/2+'s';
    102. // 追加元素
    103. back.appendChild(span);
    104. }
    105. }
    106. script>
    107. body>
    108. html>

  • 相关阅读:
    【遥感科学】遥感科学绪论
    20道常见的kafka面试题以及答案
    【linux命令讲解大全】017.格式化C语言源文件的工具:indent命令
    vscode中git的使用,以及与webstorm中git的使用对比
    如何搭建Spring开发环境呢?
    springboot+电影售票小程序 毕业设计-附源码201532
    数据结构初阶--二叉树介绍(基本性质+堆实现顺序结构)
    STM32学习笔记(七)--ADC详解
    Ecal基于wifi下跨机通讯
    Qt 集成OSG
  • 原文地址:https://blog.csdn.net/lbcyllqj/article/details/127099769