博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一款基jquery超炫的动画导航菜单
阅读量:6500 次
发布时间:2019-06-24

本文共 2068 字,大约阅读时间需要 6 分钟。

今天给大家分享一款基jquery超炫的动画导航菜单。这款导航菜单,初始时页面中间一个按钮,单击按钮,菜单从左侧飞入页中。再次单击按钮,导航飞入左侧消息。动画效果很非常炫。一起看下效果图:

   

实现的代码。

html代码:

css代码:

body        {
text-align: center; } ul {
width: 400px; padding: 0; margin: 0 auto; } ul.animate li {
transform: translate(0); } ul.animate li:nth-of-type(1) {
transition-delay: 0.05s; } ul.animate li:nth-of-type(2) {
transition-delay: 0.1s; } ul.animate li:nth-of-type(3) {
transition-delay: 0.15s; } ul.animate li:nth-of-type(4) {
transition-delay: 0.2s; } ul.animate li:nth-of-type(5) {
transition-delay: 0.25s; } li {
list-style: none; display: block; padding: 20px; margin: 12px 0; border-radius: 5px; font-family: Helvetica, sans-serif; color: #fff; background: #8DE48D; transform: translate(-500%); transition: transform 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.08); } li:nth-of-type(5) {
transition-delay: 0.15s; } li:nth-of-type(4) {
transition-delay: 0.3s; } li:nth-of-type(3) {
transition-delay: 0.45s; } li:nth-of-type(2) {
transition-delay: 0.6s; } li:nth-of-type(1) {
transition-delay: 0.75s; } button {
padding: 12px 18px; border: none; border-radius: 3px; color: #fff; background: #7DBED8; } button:focus {
outline: none; }

注:本文原创文章,转载请注明原文地址:

你可能感兴趣的文章
python之commands模块
查看>>
android应用开发--------------看RadioGroup源代码,写相似单选选项卡的集成控件(如底部导航,tab等等)...
查看>>
LeetCode - Binary Tree Level Order Traversal
查看>>
FTP协议完全详解
查看>>
【C语言天天练(十五)】字符串输入函数fgets、gets和scanf
查看>>
【环境配置】配置sdk
查看>>
accept()
查看>>
USB 2.0 Hub IP Core
查看>>
USB 2.0 OTG IP Core
查看>>
解读浮动闭合最佳方案:clearfix
查看>>
Charles使用
查看>>
Python GUI编程(Tkinter) windows界面开发
查看>>
dynamic关键字的使用
查看>>
iOS 音乐播放器之锁屏效果+歌词解析
查看>>
android O 蓝牙设备默认名称更改
查看>>
阳台的青椒苗
查看>>
swapper进程【转】
查看>>
跨链技术与通证经济
查看>>
爬虫学习之-xpath
查看>>
js jQuery 右键菜单 清屏
查看>>