博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Vue踩坑记录及工作记录
阅读量:6693 次
发布时间:2019-06-25

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

1、使用this.$emit 子组件向父组件传递事件以及携带数据

在标签内调用 methods:{ } 中的方法时候是不能够加()的,一定是直接写方法名称即可, 否则传递的参数数据无效。

这里的titleHandle是监听子组件传递过来的事件(带有参数),showTitle是父组件监听成功之后在父组件内执行的方法,【注意这里@titleHandle = "showTitle"的showTitle后面不能加(),里面也不能传参】子组件:methods:{ getTitle(title){ this.$emit('titleHandle',title) }},父组件:methods: { showTitle(title){ console.log(title) }},

2、在vue组件内,如果要对组件内的数据做逻辑判断,那么这个逻辑应该写在计算属性computed内,一般不放在模板内

computed:{    num(){ //在模板里面直接{
{num}}即可 return ... //这里面对值做逻辑处理、筛选等等 }}

3、使用CSS3 animation模拟gif动画

即:animation控制Sprites图片的background-position值模拟gif效果

.love {    display: block;    width: 100px; height: 100px;    background: url(web_heart_animation.png) 0 0 no-repeat;    background-size: 2900%;    animation: heart-burst steps(28) 0.8s infinite both;}.stop {    animation-play-state: paused;}@keyframes heart-burst {  //图片从左到右一字排开,有多少个,steps里面就写几  0% {    background-position: 0%;  }  100% {    background-position: 100%;  }}HTML代码:

JS代码:var image = document.getElementById("testImg"), button = document.getElementById("testBtn");if (image.classList && image && button) { button.onclick = function() { if (this.value == '暂停') { image.classList.add('stop'); this.value = '播放'; } else { image.classList.remove('stop'); this.value = '暂停'; } };}
兔斯基 卖萌
兔斯基 卖萌

转载于:https://blog.51cto.com/9161018/2331086

你可能感兴趣的文章
WPF入门教程系列四——Dispatcher介绍
查看>>
easyui 跳转页面语句
查看>>
「小程序JAVA实战」微信小程序简介(一)
查看>>
81.node.js前端html时页面格式错乱解决办法
查看>>
visio2010求交操作
查看>>
this与super关键字
查看>>
Word 2010 插入其他文件的方法
查看>>
iOS 动画篇 (三) CADisplayLink与CoreGraphics实现动画
查看>>
BZOJ4766: 文艺计算姬(Prufer序列)
查看>>
CSS选择器
查看>>
pip3 Fatal error in launcher: Unable to create process using '"' [转]
查看>>
关于linux的用户
查看>>
ECMAScript 5 —— 单体内置对象之Global对象
查看>>
ScriptManager的简单用法
查看>>
Some index files failed to download. They have …… or old ones used instead
查看>>
list-style
查看>>
webdriverf的截图方法get_screenshot_as_file(path)
查看>>
AGC 018E.Sightseeing Plan——网格路径问题观止
查看>>
174. Dungeon Game
查看>>
Volley超时重试机制
查看>>