当前位置: 首页 > news >正文

360网站页面的工具栏怎么做青云 wordpress加速

360网站页面的工具栏怎么做,青云 wordpress加速,wordpress文章展示模板,哪家好做网站使用css和js给按钮添加微交互的几种方式 在现实世界中#xff0c;当我们轻弹或按下某些东西时#xff0c;它们会发出咔嗒声#xff0c;例如电灯开关。有些东西会亮起或发出蜂鸣声#xff0c;这些响应都是“微交互”#xff0c;让我们知道我们何时成功完成了某件事。在本文…使用css和js给按钮添加微交互的几种方式 在现实世界中当我们轻弹或按下某些东西时它们会发出咔嗒声例如电灯开关。有些东西会亮起或发出蜂鸣声这些响应都是“微交互”让我们知道我们何时成功完成了某件事。在本文中我们将学习向网页按钮添加微交互的几种简单方法。 什么是微交互 微交互是用户界面上的小交互或动画。当用户执行操作时它们向用户提供即时反馈。微交互可以保持用户的参与度并可以改善他们的整体体验。 微交互的一些示例包括我们与某人在线聊天时的打字指示器、下载的进度条以及刷新页面时的加载指示器。 按钮是网站上最常见的交互元素之一它们可以执行一系列任务例如切换、提交、删除、关闭、选择通过单选按钮、选项按钮或选择菜单等。 基本样式 style* {margin: 0;padding: 0}body {height: 100vh;display: flex;align-items: center;justify-content: center;} /style有弹性的微交互 我们可以使用 CSS的transform属性创建一个 3D 按钮单击它时该按钮会弹起。 button classbtnspan classtext提交/span/button对于此示例我们在button中嵌套了一个span. 通常创建按钮时不需要这样做但我们需要它来创建按钮的最终 3D 外观。 .btn {position: relative;background: #004958;border-radius: 15px;border: none;cursor: pointer; }.text {display: block;padding: 15px 45px;border-radius: 15px;background: #00c2cb;font-size: 1.5rem;font-weight: 500;color: #42455a;transform: translateY(-6px);transition: transform ease 0.1s; }.btn:active .text {transform: translateY(-2px); }带边框动画的按钮 有多种方法可以为按钮的边框设置动画因此我们将展示几个示例。 简单的边框微交互 让我们从简单的事情开始。通常如果我们想向任何元素添加边框我们会使用border 属性。但是在CSS中也有outline属性这俩非常相似。它在元素周围添加轮廓。轮廓会覆盖它们所应用的元素这意味着它们是围绕边框绘制的。 它们甚至以相同的方式声明。以下是带有轮廓和边框的按钮示例 button {border: 3px solid cyan;outline: 3px solid red; }下面的屏幕截图显示了它的样子: 轮廓不会影响主元素在本例中为按钮的尺寸并且它们可以重叠其他内容或元素。我们还可以使用outline-offset属性更改他们的位置。 正偏移值会将轮廓向外推远离边框。负值将起到相反的作用。因此例如如果我们想隐藏轮廓我们需要为其指定边框宽度的负值。这就是我们为按钮创建微交互的动画 button classbtn提交/buttonbutton {border: none;position: relative;padding: 15px 45px;background: transparent;border-radius: 10px;border: 2px solid #00c2cb;outline: 2px solid #00c2cb;outline-offset: -2px;font-size: 1.5rem;color: #00c2cb;font-weight: 500;cursor: pointer;transition: outline-offset 200ms ease; }button:hover {outline-offset: 3px; } button:active{transform: scale(0.95); }带有伪元素的按钮悬停效果 我们将使用::before和::after伪元素以及inset属性来创建一些漂亮的边框动画。 我们将逐步设置我们的样式先设置button样式 button {position: relative;background: transparent;padding: 15px 45px;border-radius: 15px;border: none;font-size: 1.5rem;color: #e0ffff;font-weight: 500;cursor: pointer;z-index: 1; }把insert添加到::before该按钮的伪元素中。它的值为0px 50px因此它仅适用于 y 轴inset属性将元素水平和垂直地推离其父元素 button::before {content: ;position: absolute;inset: 0px 50px;background: #42455a;transition: inset 350ms ease;z-index: -1; }::after伪元素将覆盖::before伪元素留下一个inset大小的间隙从而创建一个边框。 button::after {content: ;position: absolute;inset: 3px;border-radius: 10px;background: #22232e;z-index: -1; }为了获得最终的外观我们将添加button元素添加overflow: hidden。这将删除方角并完成该按钮的微交互。 整体代码 button {position: relative;overflow: hidden;background: transparent;padding: 15px 45px;border-radius: 15px;border: none;font-size: 1.5rem;color: #e0ffff;font-weight: 500;cursor: pointer;z-index: 1; } button:active{transform: scale(0.95); } button::before{content: ;position: absolute;inset: -3px 50px;background: #42455a;transition: inset 350ms ease;z-index: -2; } button:hover::before{inset: -20px 0px;background: #00c2cb; } button::after{content: ;position: absolute;inset: 3px;border-radius: 10px;background: #22232e;z-index: -1; }涟漪微交互 我们将在单击按钮时为其添加涟漪效果。它可以位于按钮内或按钮周围。 我们将使用一些 JavaScript 来创建这种微交互。设置按钮样式后的 JavaScript 代码如下: let btn document.querySelectorAll(button); btn.forEach((btn) {btn.onclick function (e) {let x e.pageX - e.target.offsetLeft;let y e.pageY - e.target.offsetTop;let ripples document.createElement(span);ripples.style.left x px;ripples.style.top y px;this.appendChild(ripples);setTimeout(() {ripples.remove();}, 2000);}; });click 函数跟踪鼠标单击的 x 和 y 位置并创建一个新span元素。每个都span代表一个涟漪之后使用setTimeout()方法在两秒后将其删除。 我们使用 CSS 动画来更改其大小和不透明度。这将产生连锁反应。 button{position: relative;padding: 15px 45px;font-size: 1.5rem;border-radius: 15px;border: none;background: #00c2cb;color: #22232e;overflow: hidden;cursor: pointer; } button span {position: absolute;background: #004958;transform: translate(-50%,-50%);pointer-events: none;border-radius: 50%;animation: ripple 2s linear infinite;transition: 0.5s; }keyframes ripple {0% {width: 0;height: 0;opacity: 0.5;}100% {width: 500px;height: 500px;opacity: 0;} }发光 让按钮在悬停时发光。我们需要伪元素和box-shadow属性的组合。 buttonspan classbtn-textClick me/span/buttonbutton {display: flex;justify-content: center;align-items: center;background: transparent;position: relative;background: #22232e;border: none;border-radius: 15px; } button .btn-text{padding: 14px 45px;font-size: 25px;color: #e0ffff;border: 2px solid rgba(255,255,255,0.1);border-radius: 15px;backdrop-filter: blur(15px);background: rgba(0,73,88,0.05);cursor: pointer;z-index: 1;transition: 0.2s; }此时我们应该有一个看起来很普通的按钮。要在底部添加栏我们将使用::before伪元素 button::before {content: ;position: absolute;left: 50%;transform: translateX(-50%);bottom: -5px;width: 25%;height: 10px;background: #00c2cb;border-radius: 10px;transition: .5s;box-shadow: 0 0 10px rgba(0,194,203,0.5); }添加box-shadow了就有了发光效果。 为了完成这个微交互我们将增加悬停时伪元素的大小 button:hover::before {bottom: 0;height: 40%;width: 90%;border-radius: 30px;transition-delay: 0.5s; }整体代码 button {display: flex;justify-content: center;align-items: center;background: transparent;position: relative;background: #22232e;border: none;border-radius: 15px; } button .btn-text{padding: 14px 45px;font-size: 25px;color: #e0ffff;border: 2px solid rgba(255,255,255,0.1);border-radius: 15px;backdrop-filter: blur(15px);background: rgba(0,73,88,0.05);cursor: pointer;z-index: 1;transition: 0.2s; } button::before{content: ;position: absolute;left: 50%;transform: translateX(-50%);bottom: -5px;width: 25%;height: 10px;background: #00c2cb;border-radius: 10px;transition: .5s;box-shadow: 0 0 10px rgba(0,194,203,0.5); } button:hover::before{bottom: 0;height: 40%;width: 90%;border-radius: 30px;transition-delay: 0.5s; }
http://www.hkea.cn/news/14389886/

相关文章:

  • 网站开发需要多少钱怎样网站建设百度
  • 千万pv网站开发成本等保二级网站建设方案
  • 开一家网站建设公司好辽宁省大学生创新创业平台
  • wordpress国内主机推荐网络优化工程师是干什么的
  • 怎么做网站外链接wordpress 去掉描述的超链接
  • 给个网站你知道创建全国文明城市倡议书
  • wordpress 建站 教程昆明网站seo诊断
  • 企业网站搭建步骤个人养老金保险
  • 自己的网站怎么做模板常州做网站哪家好
  • 八冶建设集团有限公司网站深圳推广平台深圳网络推广
  • 天津市网站建设公司做网站都要学什么
  • 成都网站设计策划免费温州网站建设方案
  • 做买衣服的网站有哪些给几个手机网站
  • 济南 网站建设 域名注册做网站在哪里做比较好
  • 用服务器如何做网站网站备案被注销了怎么办
  • python 网站开发神器灌云网站制作
  • wordpress 支持mkv播放器网页优化最为重要的内容是
  • 南宁企业建站系统模板aaaa景区网站建设标准
  • 网站建设制作报价asp.net 4.0网站开发
  • 青白江做网站的公司淘宝优惠券网站怎么做
  • 设计感十足的网站新网站优化
  • 从网站栏目看网站功能实训网站开发目的
  • 服装图案素材网站wordpress调用页面标题
  • 西宁网站建设报价壹君博贴心凡客优品
  • 安装网站程序的流程东南亚做网站 什么语言
  • 硬件开发工程师工资做网站优化找谁
  • 网站备案一次就可以了吧广东粤建设计院网站
  • 建个人网站能赚钱吗网站配色
  • 本地dedecms网站大连金州区房价
  • 织梦网站主页代码在后台怎么改怎么查网站开发者联系方式