18种垂直分页导航按钮动画特效
简要教程
这是一组效果非常炫酷的垂直分页导航按钮动画特效。这组特效通用18种效果,可以用于制作幻灯片、页面切换和其它容器组件切换的分页导航按钮。
使用方法
HTML结构
下面是这组垂直分页导航按钮动画特效中的其中一种效果的GIF动态演示图:
生成上面的垂直分页导航效果的HTML结构如下:
<nav class="nav nav--timiro"> <button class="nav__item" aria-label="Item 1"></button> <button class="nav__item nav__item--current" aria-label="Item 2"></button> <button class="nav__item" aria-label="Item 3"></button> <button class="nav__item" aria-label="Item 4"></button> <button class="nav__item" aria-label="Item 5"></button> <button class="nav__item" aria-label="Item 6"></button> <button class="nav__item" aria-label="Item 7"></button> <button class="nav__item" aria-label="Item 8"></button> </nav>
CSS样式
.nav { position: relative; width: 8em; margin: 0 0 0 3em; } .nav__item { line-height: 1; position: relative; display: block; margin: 0; padding: 0; letter-spacing: 0; color: currentColor; border: 0; background: none; } .nav__item:focus { outline: none; }
然后万维zahi效果设置特有的CSS样式:
/*** Zahi ***/ .nav--zahi .nav__item { width: 2em; height: 2em; } .nav--zahi .nav__item::before, .nav--zahi .nav__item::after { content: ''; position: absolute; } .nav--zahi .nav__item:not(:last-child)::before { top: calc(2em - 9px); left: 5px; width: 2px; height: calc(2em - 12px); background: #98322a; } .nav--zahi .nav__item::after { top: 50%; left: 0; width: 12px; height: 12px; margin: -5px 0 0 0; border: 2px solid #98322a; border-radius: 50%; background: #f44336; -webkit-transition: -webkit-transform 0.3s, border-color 0.3s, border-width 0.3s, background 0.3s; transition: transform 0.3s, border-color 0.3s, border-width 0.3s, background 0.3s; } .nav--zahi .nav__item--current::after { border-width: 1px; border-color: #fff; -webkit-transform: scale3d(1.6,1.6,1); transform: scale3d(1.6,1.6,1); } .nav--zahi .nav__item:not(.nav__item--current):focus::after, .nav--zahi .nav__item:not(.nav__item--current):hover::after { border-color: #fff; background: #fff; } .nav--zahi .nav__item-title { font-family: 'Roboto Condensed', sans-serif; line-height: 1.5; display: block; position: relative; padding: 0 0 0 2.5em; white-space: nowrap; opacity: 0.3; color: #98322a; -webkit-transition: opacity 0.3s, color 0.3s; transition: opacity 0.3s, color 0.3s; } .nav--zahi .nav__item:not(.nav__item--current):focus .nav__item-title, .nav--zahi .nav__item:not(.nav__item--current):hover .nav__item-title { opacity: 0.5; } .nav--zahi .nav__item--current .nav__item-title { opacity: 1; color: #fff;
其它效果的制作请参考下载文件。
以上就是18种垂直分页导航按钮动画特效的内容,更多相关内容请关注PHP中文网(m.sbmmt.com)!

热AI工具

Undress AI Tool
免费脱衣服图片

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

用户代理样式表是浏览器自动应用的默认CSS样式,用于确保未添加自定义样式的HTML元素仍具基本可读性。它们影响页面初始外观,但不同浏览器存在差异,可能导致不一致显示。开发者常通过重置或标准化样式来解决这一问题。使用开发者工具的“计算”或“样式”面板可查看默认样式。常见覆盖操作包括清除内外边距、修改链接下划线、调整标题大小及统一按钮样式。理解用户代理样式有助于提升跨浏览器一致性并实现精准布局控制。

backdrop-filter用于对元素背后的内容应用视觉效果,1.使用backdrop-filter:blur(10px)等语法实现毛玻璃效果;2.支持blur、brightness、contrast等多种滤镜函数并可叠加;3.常用于玻璃态卡片设计,需确保元素与背景重叠;4.现代浏览器支持良好,可用@supports提供降级方案;5.避免过大模糊值和频繁重绘以优化性能,该属性仅在元素背后有内容时生效。

首先通过JavaScript获取用户系统偏好和本地存储的主题设置,初始化页面主题;1.HTML结构包含一个按钮用于触发主题切换;2.CSS使用:root定义亮色主题变量,.dark-mode类定义暗色主题变量,并通过var()应用这些变量;3.JavaScript检测prefers-color-scheme并读取localStorage决定初始主题;4.点击按钮时切换html元素上的dark-mode类,并将当前状态保存至localStorage;5.所有颜色变化均带有0.3秒过渡动画,提升用户

vw和vh单位通过将元素尺寸与视口宽度和高度关联,实现响应式设计;1vw等于视口宽度的1%,1vh等于视口高度的1%;常用于全屏区域、响应式字体和弹性间距;1.全屏区域使用100vh或更优的100dvh避免移动浏览器地址栏影响;2.响应式字体可用5vw并结合clamp(1.5rem,3vw,3rem)限制最小和最大尺寸;3.弹性间距如width:80vw、margin:5vhauto、padding:2vh3vw可使布局自适应;需注意移动设备兼容性、可访问性及固定宽度内容冲突,建议优先使用dvh

Theaspect-ratioCSSpropertydefinesthewidth-to-heightratioofanelement,ensuringconsistentproportionsinresponsivedesigns.1.Itisapplieddirectlytoelementslikeimages,videos,orcontainersusingsyntaxsuchasaspect-ratio:16/9.2.Commonusecasesincludemaintainingres

:emptyPseudo-classSelectSelectsselemtswithnochildrenorcontent,包括pacesorcomments,sonlyTrulyEmpterementLikeMatchit; 1.ItcanhideEmptycontainersbousing:intume {note {note display:none;} toCleanuplayouts; 2.ItallowSaddingplacePlacePlacePlaceLanderStylingLingvia :: Forefore :: Forefor :: show offor :: show

要实现CSS元素重叠,需使用定位和z-index属性。1.使用position和z-index:将元素设置为非static定位(如absolute、relative等),并通过z-index控制堆叠顺序,值越大越靠前。2.常见定位方法:absolute用于精确布局,relative用于相对偏移并重叠相邻元素,fixed或sticky用于固定定位的悬浮层。3.实际示例:通过设置父容器position:relative,子元素position:absolute和不同z-index,可实现卡片重叠效果

Define@keyframesbouncewith0%,100%attranslateY(0)and50%attranslateY(-20px)tocreateabasicbounce.2.Applytheanimationtoanelementusinganimation:bounce0.6sease-in-outinfiniteforsmooth,continuousmotion.3.Forrealism,use@keyframesrealistic-bouncewithscale(1.1
