- 博客(14)
- 收藏
- 关注
原创 在公司学习前端之vant在h5中的使用
vant在h5中的使用<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> //保持页面比例 <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui"> <title>开户</titl
2021-03-04 15:34:48
1193
2
原创 在公司学习前端之jq和js的列表数大于5的列表滚动
.keshi{ height: 164px; overflow-y: hidden; } .keshi .gund { animation: move 150s linear; animation-iteration-count: infinite; }<div class="list_container"> ...
2020-12-08 14:12:32
192
原创 在公司学习前端之vue组件路径
./表示本级…/表示上一级所以组件只要出到引用文件级再写上路径就可以了只要这样写就可以了<script> import new_index_dangj from "../../components/new_index/new_index_dangj"; import new_index_zzs from "../../components/new_index/new_index_zzs"; import new_index_ruzhu from"../../compone
2020-12-08 14:09:48
332
原创 在公司之前端项目实战之jsp中数据引用与列表切换
<div style="padding: 10px"> <input type="button" value="本年" id="CIA2" onClick="changeIA()" "> </input> <input type="button" value="本月" id="CIA" ...
2020-11-30 14:13:43
220
原创 echarts小贴士
改颜色 series: [{ name: "已租", type: 'bar', stack: "xxx", data: ["10", "20","1","2","8","5"], //这个属性是改数据颜色的↓ itemStyle:{ normal:{ color:'#3abfd2
2020-11-20 15:45:42
146
原创 在公司学习前端之vue-cli的element ui之走马灯
成功的解决了走马灯tag因为样式被赶出走马灯的情况<div class="block"> <span class="demonstration"></span> <el-carousel height="400px"> <el-carousel-item v-for="item in 4" :key="item"> <h3 class="small">{{ i
2020-10-09 16:26:51
309
原创 在公司学习前端之vue-cli的点击隐藏和显示之告白网页.1
直接拿halloworld.vue改的一开始就只有欢迎来到我的博客和一个按钮,按钮按进去之后会弹出网易云外链播放器和一行字,这个字是引导点击触发@click然后弹出告白文字,暂时还是雏形以后学会其他的会持续升级的还有这个时间我是掐了一下的,刚好跳那个宝物应该有人捧着<template> <div class="home"> <input type="button" value="按钮上显示的内容" v-on:click
2020-09-21 17:41:26
427
原创 在公司学习前端之vue-cli点击事件
点击区域<div @click="time()">{{ msg }}</div>vue的home.vue<script>export default { name: "Home", components: { HelloWorld }, data() { return { msg: "", msg1: "www" }; }, methods: { time: function()
2020-09-17 15:38:58
543
原创 在公司学习前端之jquery动画加选择器
在公司学习前端之jquery动画加选择器<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"> </script> <link rel="stylesheet" t
2020-09-09 14:22:54
119
原创 在公司自学前端之计算器
<div class="di"> <input type="text" id="a" class="red"><br /> <input type="button" value="+" onclick="d()" class="btn"> <input type="button" value="-" onclick="e()" class="btn"> <input type="button" value="*.
2020-08-21 14:02:24
151
原创 在公司自学前端之选择器
选 择 器<script> function linka(){//跳转判断条件 if(link.value==1)//判断value值等于1; window.location="csz.html";//跳转本地的猜数字网页; if(link.value==2)//判断value值等于2; window.location="jsq.html";//跳转本地的计数器网页; if(link.value==3)//判断value值等于3; wind
2020-08-21 11:07:10
119
原创 在公司里自学前端之猜数字
在公司里学习js的实践之猜数字 <script type="text/javascript"> var n =parseInt(Math.random()*100); do{ var input= prompt("请输入数字"); if(input > n){ alert("大了"); }else if(input<n){ alert("小了"); }else{ alert("猜对了,答案为"+(n)); }
2020-08-17 10:57:50
186
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人