返回列表 发布新帖
查看: 93|回复: 0

[美化] WordPress子比主题动态灵动岛美化样式代码

  • 打卡等级:即来则安
  • 打卡总天数:24
  • 打卡月天数:17
  • 打卡总奖励:5300
  • 最近打卡:2024-12-25 08:05:04

89

主题

3

回帖

691

积分

Lv.9

积分
691

2024万圣节纪念币社区杰出贡献勋章种子用户勋章2024龙年纪念币

发表于 2024-11-28 20:37:33 | 查看全部 |阅读模式
这是一款模仿苹果灵动岛一个样式代码,代码是扒的mac站长的一个样式,然后对于灵动岛,里面是比如用户访问哪个页面或者文章分类等,他会调用该页面的标题来欢迎的灵动岛,消息和用户中心我是单独判断的一个样式,话不多说直接上演示!


跟着我的教程走,不会有问题,一共要改三个地方,一个是CSS样式和子比主题自定义头部HTML代码,还有一个function.php文件,话不多说直接开始。

CSS代码:
  1. .dynamic-island:hover img {

  2.     width: 30px; /* 鼠标悬停时,图片宽度也增大 */

  3.     height: 30px; /* 鼠标悬停时,图片高度增大 */

  4. }

  5. .bars {

  6.   display: flex;

  7.   align-items: center; /* 垂直居中 */

  8.   justify-content: flex-end; /* 向右对齐 */

  9.   gap: 3px;

  10. }

  11. .bar {

  12.   width: 2px;

  13.   height: 13px;

  14.   background-color: green;

  15.   animation: bounce 1s infinite ease-in-out;

  16.   animation-direction: alternate;

  17. }

  18. /* 增加更多的条形波动并调整动画时间 */

  19. .bar:nth-child(1) { animation-duration: 1s; }

  20. .bar:nth-child(2) { animation-duration: 0.9s; }

  21. .bar:nth-child(3) { animation-duration: 0.8s; }

  22. .bar:nth-child(4) { animation-duration: 0.7s; }

  23. .bar:nth-child(5) { animation-duration: 0.6s; }

  24. .bar:nth-child(6) { animation-duration: 0.9s; }

  25. .bar:nth-child(7) { animation-duration: 0.7s; }

  26. .dynamic-island {

  27.     position: fixed;

  28.     top: 80px;

  29.     left: 50%;

  30.     transform: translateX(-50%) scale(0); /* 初始状态缩小为0 */

  31.     transform-origin: center;

  32.     width: auto;

  33.     max-width:80%;

  34.     height: 40px;

  35.     background-color: #000;

  36.     border-radius: 25px; /* 与默认高度一致的圆角半径 */

  37.     color: white;

  38.     display: flex;

  39.     align-items: center;

  40.     justify-content: space-between; /* 图片和文字之间自动分配空间 */

  41.     transition: transform 0.4s ease-in-out, height 0.6s ease-in-out, border-radius 0.6s ease-in-out, box-shadow 0.5s ease-in-out, opacity 0.5s ease-in-out;

  42.     overflow: visible; /* 允许溢出,避免图片被遮挡 */

  43.     z-index: 1000;

  44.     padding-left: 35px; /* 确保内容不贴边 */

  45.     padding-right: 20px; /* 确保内容不贴边 */

  46.     opacity: 0;

  47.     box-shadow: 0 0px 10px rgba(0, 0, 0, 0.45); /* 添加黑色阴影 */

  48. }

  49. .dynamic-island.active {

  50.     transform: translateX(-50%) scale(1); /* 激活状态放大为正常大小 */

  51.     opacity: 1;

  52. }

  53. .dynamic-island.inactive {

  54.     transform: translateX(-50%) scale(0); /* 关闭状态缩小 */

  55.     opacity: 0;

  56. }

  57. .island-content {

  58.     opacity: 0;

  59.     transition: opacity 0.9s ease-in-out, filter 0.8s ease-in-out; /* 使内容加粗并从模糊到清晰 */

  60.     font-weight: bold; /* 使文字加粗 */

  61.     flex-grow: 1; /* 使内容区占满剩余空间 */

  62.     text-align: right; /* 文字内容右对齐 */

  63.     width:100%;

  64. }

  65. .dynamic-island.active .island-content {

  66.     opacity: 1;

  67. }

  68. /* 图片样式 */

  69. .dynamic-island img {

  70.     position: absolute;

  71.     left: 10px; /* 保持与灵动岛左边10px的距离 */

  72.     width: 20px; /* 图片宽度 */

  73.     height: 20px; /* 图片高度 */

  74.     /* border-radius: 50%;  为圆形 */

  75.     object-fit: cover; /* 保证图片内容充满容器 */

  76.     transition: height 0.8s ease-in-out, width 0.8s ease-in-out, filter 0.8s ease-in-out;

  77. }

  78. .dynamic-island:hover {

  79.     height: 60px;

  80.     border-radius: 50px;

  81. }

  82.    @keyframes bounce {

  83.             0% {

  84.                 transform: scaleY(0.3);

  85.                 background-color: green;

  86.             }

  87.             50% {

  88.                 transform: scaleY(1);

  89.                 background-color: orange;

  90.             }

  91.             100% {

  92.                 transform: scaleY(0.3);

  93.                 background-color: green;

  94.             }

  95.         }
复制代码
HTML代码
  1. <div class="dynamic-island inactive" id="dynamicIsland" style="opacity: 0;">

  2.     <img src="https://img.alicdn.com/imgextra/i1/2210123621994/O1CN01lajerM1QbIl9aoHcJ_!!2210123621994.png" alt="通知图标" width="30" height="30">

  3.     <div class="island-content">

  4.         <div class="bars" style="line-height: 50px; margin: 0;">

  5.             <p style="line-height: 50px; margin: 0; font-size: 12px; padding-right: 10px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;"> 欢迎访问站长论坛</p>

  6.             <div class="bar"></div>

  7.             <div class="bar"></div>

  8.             <div class="bar"></div>

  9.             <div class="bar"></div>

  10.             <div class="bar"></div>

  11.             <div class="bar"></div>

  12.             <div class="bar"></div>

  13.         </div>

  14.     </div>

  15. </div>
复制代码
PHP代码
  1. // 灵动岛

  2. function add_dynamic_island_script() {

  3.     ?>

  4.     <script type="text/javascript">

  5.         window.onload = function() {

  6.             // 触发灵动岛的显示

  7.             triggerIsland();

  8.             // 获取当前页面的标题

  9.             let title;

  10.             const currentUrl = window.location.pathname; // 获取当前 URL 路径

  11.             if (currentUrl.includes('/message/')) {

  12.                 // 如果访问了消息页面

  13.                 document.querySelector('.bars p').innerText = "正在访问消息页面";

  14.             } else if (currentUrl.includes('/user/')) {

  15.                 // 如果访问了用户中心页面

  16.                 document.querySelector('.bars p').innerText = "欢迎来到用户中心";

  17.             } else if (document.body.classList.contains('home') || document.body.classList.contains('front-page')) {

  18.                 // 如果是首页

  19.                 document.querySelector('.bars p').innerText = "欢迎来到站长论坛";

  20.             } else if (document.body.classList.contains('single')) {

  21.                 // 如果是单篇文章

  22.                 title = "<?php echo addslashes(html_entity_decode(get_the_title())); ?>"; // 获取文章标题并解码

  23.                 document.querySelector('.bars p').innerText = "正在访问:" + title;

  24.             } else if (document.body.classList.contains('category')) {

  25.                 // 如果是分类页面

  26.                 const category = "<?php echo addslashes(html_entity_decode(get_queried_object()->name)); ?>"; // 获取当前分类的名称

  27.                 document.querySelector('.bars p').innerText = "正在访问:" + category + " 分类";

  28.             } else if (document.body.classList.contains('page')) {

  29.                 // 如果是单个页面

  30.                 title = "<?php echo addslashes(html_entity_decode(get_the_title())); ?>"; // 获取页面标题并解码

  31.                 document.querySelector('.bars p').innerText = "正在访问:" + title;

  32.             } else {

  33.                 // 如果以上都不匹配,可以使用默认值

  34.                 document.querySelector('.bars p').innerText = "欢迎来到3BBS.CN";

  35.             }

  36.         };

  37.         // 触发灵动岛的显示
  38.         function triggerIsland() {

  39.             const island = document.getElementById('dynamicIsland');

  40.             if (island) {

  41.                 island.style.opacity = 1;

  42.                 island.classList.add('active')

  43.                 island.classList.remove('inactive');

  44.                 // 在4秒后触发关闭动画

  45.                 setTimeout(() => {

  46.                     closeIsland();
  47.                 }, 4000);

  48.             }

  49.         }

  50.         function closeIsland() {

  51.             const island = document.getElementById('dynamicIsland')

  52.             if (island) {

  53.                 island.classList.remove('active');

  54.                 island.classList.add('inactive');

  55.                 setTimeout(() => {
  56.                     island.style.opacity = 0; // 使灵动岛透明

  57.                 }, 600); // 与 transform 动画持续时间一致

  58.             }

  59.         }

  60.     </script>

  61.     <?php

  62. }

  63. add_action('wp_head', 'add_dynamic_island_script');
复制代码


回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

服务支持

社区监狱 封禁类型
投诉/建议联系

fankui@shequla.com

未经授权禁止转载,复制和建立镜像
如有违反,追究法律责任
  • 关注公众号
  • 添加微信客服
Copyright © 2001-2024 社区啦 - 小众的中文社区 版权所有 All Rights Reserved. |网站地图 冀ICP备2022019298号
关灯 在本版发帖
手机扫一扫访问
官方Q群返回顶部
快速回复 返回顶部 返回列表