博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jQuery实现返回顶部按钮功能
阅读量:6813 次
发布时间:2019-06-26

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

  • html结构
  • css样式
  • .toolbar{
    position: fixed; right: 10px; bottom: 20px;}.toolbar-item{
    position: relative; display: block; width: 50px; height: 50px; &:hover{ .toolbar-icon{ top: -@toolbar-size; } .toolbar-text {
    top: 0; } }}.toolbar-btn{
    position: absolute; left: 0; top: 0; width: 50px; height: 50px; overflow: hidden; .toolbar-icon{ position: absolute; left: 0; top: 0; width: 50px; height: 50px; background-color: #ccc; font-size: 30px; color: #fff; text-align: center; transition: top 1s; } .toolbar-text{
    position: absolute; left: 0; top: 50px; width: 50px; height:50px; background-color: #A0A0A0; font-size: 14px; color: #fff; text-align: center; transition: top 1s; }}
  • jQuery实现返回顶部
  •  

至此,返回顶部按钮功能基本实现

转载于:https://www.cnblogs.com/zhuyinxiaozi/p/5514321.html

你可能感兴趣的文章
ADO.NET 数据库操作类
查看>>
转载 侃一侃编译原理的“文法” 作者 :博客网 my笔触
查看>>
Js获取处理日期时间
查看>>
PHP输出当前进程所有变量 / 常量 / 模块 / 函数 / 类
查看>>
django获取客户ip
查看>>
【分块】bzoj2120 数颜色
查看>>
【权值分块】bzoj1588 [HNOI2002]营业额统计
查看>>
python之类介绍
查看>>
Python学习笔记之爬虫
查看>>
[JDK8] Stream
查看>>
常用css样式
查看>>
当你输入一个网址的时候,实际会发生什么?
查看>>
spring funcitons
查看>>
使Ubuntu登陆时默认开NumLock灯
查看>>
WPF:MVVM模式下ViewModel关闭View
查看>>
I/O多路复用
查看>>
C# 简单封装一个XML文件读取类
查看>>
第四篇4.1章
查看>>
指针 && 双指针
查看>>
mysql 数据备份 crontab
查看>>