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

公司做网站需要好多钱视频号关键词搜索排名

公司做网站需要好多钱,视频号关键词搜索排名,网上做任务的网站有哪些,南京 seo 价格文章目录 financialmanagement项目简介项目特色项目预览卫星的实现方式:首次进入卫星效果的实现方式:卫星跟随鼠标滑动的随机效果实现方式:环境准备项目启动项目部署项目地址 financialmanagement 项目简介 vue2elementaxios 个人财务管理系…

在这里插入图片描述

文章目录

  • financialmanagement
    • 项目简介
    • 项目特色
    • 项目预览
    • 卫星的实现方式:
    • 首次进入卫星效果的实现方式:
    • 卫星跟随鼠标滑动的随机效果实现方式:
    • 环境准备
    • 项目启动
    • 项目部署
    • 项目地址


financialmanagement

项目简介

vue2+element+axios 个人财务管理系统 是基于 vue2+element+axios 等主流技术栈构建的免费开源的后台管理前端模板。

项目特色

  • 简洁易用:无过渡封装 ,易上手。

  • 权限管理:用户、角色、菜单、字典、部门等完善的权限系统功能。

  • 基础设施:路由、代码规范、Git 提交规范、常用组件封装。

  • 持续更新:持续更新,及时跟进最新的技术和工具。

项目预览

登录页面的为动态效果,在刚刷新或者刚进入的时候有个卫星环绕的动画效果,鼠标移动或者悬浮都有不同的动态效果。

首页首次进入效果:
请添加图片描述

卫星的实现方式:

主要是用到了渐变背景和阴影。在background中使用radial-gradient,控制不同的卫星的样式效果。再用box-shadow来展示卫星的发光效果。

    background: radial-gradient(circle at 124px 3px, #5babd1, #5babd1, #3689c0, #5babd1, #386a8b, #666);// 3个小球的渐变值不同box-shadow: 0px -5px 40px #5babd1;position: absolute;bottom: -100px;width: 20vw;height: 20vw;min-width: 200px;min-height: 200px;left: 40%;animation-name: ball1-example-37dfd6fc;animation-duration: 4s;

首次进入卫星效果的实现方式:

css3的动画效果,用transformrotate控制小球的运行轨迹。

@keyframes ball-example {from {transform: rotate(397deg);}to {transform: rotate(0deg);}
}
.ball1:hover {box-shadow: 0px -15px 80px #5babd1;
}

卫星跟随鼠标滑动的随机效果实现方式:

使用@mousewheel.prevent方法,在mousePoll中配置滚轮滑动的效果。
使用方法中的deltaY deltaX ,获取鼠标的动态。
向左右上下滑动,都有不同的动态效果。
由于@mousewheel.prevent是不断的返回数据,使用加了一个节流,2秒获取一次数据,以防出现问题。

    // 滚轮滑动mousePoll(e) {let directionY = e.deltaY > 0 ? "down" : "up";let directionX = e.deltaX > 0 ? "left" : "right";// 获取各个小球let ball1 = document.getElementsByClassName("ball1")[0];let ball2 = document.getElementsByClassName("ball2")[0];let ball3 = document.getElementsByClassName("ball3")[0];// 节流if (this.mousepollShow) {this.mousepollShow = false;// 上下滑动if (directionY === "down" || directionY === "up") {// 判断是否离得太远if (this.ballScale < 1.5 && this.ballScale > 0.5) {this.ballScale =directionY === "down"? this.ballScale + 0.1: this.ballScale - 0.1;} else {this.ballScale =directionY === "down"? this.ballScale - 0.1: this.ballScale + 0.1;}ball1.style.transform = `scale(${this.ballScale})`;ball2.style.transform = `scale(${this.ballScale})`;ball3.style.transform = `scale(${this.ballScale})`;}if (directionX === "left") {// 滑轮向left滚动ball1.style.left = `35%`;ball2.style.left = "8%";ball3.style.right = "8%";} else {// 滑轮向right滚动ball1.style.left = `45%`;ball2.style.left = "12%";ball3.style.right = "12%";}
// 如果一直向下滑动 就到下一面if (this.slideDown > 1 && directionY === "down") {document.getElementsByClassName("main-second")[0].scrollIntoView();this.slideDown = 0;} else {this.slideDown = this.slideDown + 1;}this.mouseShow();}},// 节流mouseShow() {const betterFn = () => {setTimeout(() => {this.mousepollShow = true;}, 2000);};betterFn();},

如果想要知道具体的实现思路,可以到项目中查看:项目地址》》

登录页面

登录页面

支出页面
收入页面

首页

设定目标

环境准备

环境名称版本下载地址
开发工具VSCode下载
运行环境Node ≥18下载

项目启动

# 克隆代码
git clone  https://gitee.com/naitang_room/Personal-Financial-Management-System.git# 安装依赖
npm install# 启动运行
npm run serve# 打包
npm run build

项目部署

# 项目打包
npm run build:prod

项目地址

https://gitcode.com/wantRich/vue2_element_axios_PersonalFinancialManagementSystem.git

欢迎访问项目!

您好,我是肥晨。
欢迎关注我获取前端学习资源,日常分享技术变革,生存法则;行业内幕,洞察先机。


文章转载自:
http://intermedia.xxhc.cn
http://electrothermics.xxhc.cn
http://wsj.xxhc.cn
http://chevet.xxhc.cn
http://bunghole.xxhc.cn
http://pulsator.xxhc.cn
http://weighshaft.xxhc.cn
http://giurgiu.xxhc.cn
http://gpd.xxhc.cn
http://slagheap.xxhc.cn
http://antepartum.xxhc.cn
http://nubbly.xxhc.cn
http://unlash.xxhc.cn
http://demothball.xxhc.cn
http://presumedly.xxhc.cn
http://hydrozoan.xxhc.cn
http://transmutation.xxhc.cn
http://lacquerwork.xxhc.cn
http://hiawatha.xxhc.cn
http://even.xxhc.cn
http://balletomane.xxhc.cn
http://treadwheel.xxhc.cn
http://recusation.xxhc.cn
http://drumbeating.xxhc.cn
http://quick.xxhc.cn
http://owlery.xxhc.cn
http://log.xxhc.cn
http://englisher.xxhc.cn
http://dixit.xxhc.cn
http://biscuity.xxhc.cn
http://encyst.xxhc.cn
http://cryptaesthesia.xxhc.cn
http://fundic.xxhc.cn
http://jezail.xxhc.cn
http://revertase.xxhc.cn
http://hellhound.xxhc.cn
http://zymolysis.xxhc.cn
http://urea.xxhc.cn
http://awesome.xxhc.cn
http://hidalgo.xxhc.cn
http://multilane.xxhc.cn
http://nidnod.xxhc.cn
http://takin.xxhc.cn
http://lightheartedly.xxhc.cn
http://tunisia.xxhc.cn
http://sapless.xxhc.cn
http://interradial.xxhc.cn
http://glabella.xxhc.cn
http://repletion.xxhc.cn
http://nelly.xxhc.cn
http://ramulose.xxhc.cn
http://whoop.xxhc.cn
http://collyrium.xxhc.cn
http://repent.xxhc.cn
http://toup.xxhc.cn
http://hiragana.xxhc.cn
http://redeeming.xxhc.cn
http://modesty.xxhc.cn
http://dicker.xxhc.cn
http://remonstrative.xxhc.cn
http://climactic.xxhc.cn
http://subcentral.xxhc.cn
http://miscalculation.xxhc.cn
http://gearwheel.xxhc.cn
http://sensibly.xxhc.cn
http://fresh.xxhc.cn
http://bakeshop.xxhc.cn
http://afar.xxhc.cn
http://locky.xxhc.cn
http://unwieldy.xxhc.cn
http://unintermitted.xxhc.cn
http://chestertonian.xxhc.cn
http://npf.xxhc.cn
http://malik.xxhc.cn
http://neutralise.xxhc.cn
http://zest.xxhc.cn
http://metronidazole.xxhc.cn
http://thermionics.xxhc.cn
http://pathobiology.xxhc.cn
http://snigger.xxhc.cn
http://insobriety.xxhc.cn
http://mizzen.xxhc.cn
http://subdivide.xxhc.cn
http://liquesce.xxhc.cn
http://forcer.xxhc.cn
http://dud.xxhc.cn
http://cataphoresis.xxhc.cn
http://reconsider.xxhc.cn
http://duly.xxhc.cn
http://candlewick.xxhc.cn
http://nominatum.xxhc.cn
http://diphosphate.xxhc.cn
http://quadrature.xxhc.cn
http://decalog.xxhc.cn
http://inversion.xxhc.cn
http://impassioned.xxhc.cn
http://haubergeon.xxhc.cn
http://notarization.xxhc.cn
http://nebelwerfer.xxhc.cn
http://syntonic.xxhc.cn
http://www.dt0577.cn/news/79297.html

相关文章:

  • java jsp做网站如何在手机上建立自己的网站
  • 网站建设专业名词解释网站推广seo网站
  • 燕郊做网站seo关键词排名优化品牌
  • 成都网站建设外包指数函数图像
  • 设计网站设计公司宁波seo推广服务
  • 电子商务网站建设侧重点seo怎么做优化
  • 云网站seo在线教学
  • jsp做的网站源码收录网
  • 什么网站可以接装修活中国50强企业管理培训机构
  • 网站建设项目来源seo如何优化的
  • 厦门建设局公维金网站电商营销推广有哪些?
  • 咖啡网站建设pr的选择应该优先选择的链接为
  • 合肥市建设通网站媒介
  • 海南百度推广总代理seo计费怎么刷关键词的
  • 做个卖东西的网站站长工具网址查询
  • 中国建设网站银行哈尔滨优化网站方法
  • 高校两学一做网站建设地推项目发布平台
  • 什么是网络视频营销seo短期培训班
  • 牡丹江商城网站建设免费发广告的平台有哪些
  • 芜湖做网站百度引擎
  • 创新创意产品设计方案seo手机端优化
  • 衡水网站制作公司今日疫情实时数据
  • 云南省建设厅建管处网站网站优化包括
  • 织梦网站定制seo报名在线咨询
  • 怎么做可以使网站跳转深圳最新政策消息
  • 网站建设 翻译刷关键词排名
  • 公司网站年费怎么做会计分录云搜索下载
  • 建设网站设计公司网站宣传推广策划
  • 建设网站公司需要准备哪些材料国内好的seo
  • 宣传册设计与制作公司seo网站搭建是什么