码迷,mamicode.com
首页 > 其他好文 > 详细

VUE实现微博发布效果

时间:2019-11-01 22:33:24      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:pre   charset   发布   tom   meta   script   条件   col   spl   

<!DOCTYPE html>
<html>

<head>
  <meta charset="UTF-8">
  <title>微博发布效果</title>
  <style>
    body,
    ul,
    p {
      margin: 0;
      padding: 0;
    }
    
    .weibo {
      width: 600px;
      border: 1px solid #ccc;
      margin: 100px auto;
      padding: 10px;
    }
    
    .weibo-text {
      width: 590px;
      height: 140px;
      padding: 5px;
      border: 1px solid #ccc;
      outline: none;
      resize: none;
    }
    
    .weibo-text:focus {
      border-color: #f60;
    }
    
    .weibo-btn {
      width: 80px;
      height: 30px;
      background-color: #f90;
      color: #fff;
      border: 0 none;
      margin-top: 5px;
      border-radius: 3px;
      cursor: pointer;
      outline: 0 none;
    }
    
    .weibo-list {
      padding-top: 10px;
      list-style: none;
    }
    
    .weibo-list li {
      font-size: 14px;
      line-height: 30px;
      border-bottom: 1px dotted #ccc;
      overflow: hidden;
    }
    
    .weibo-list li p {
      float: left;
    }
    
    .weibo-list li span {
      float: right;
      cursor: pointer;
    }
    
    .weibo-list li input {
      height: 24px;
      line-height: 24px;
      width: 300px;
      font-size: 14px;
      border: 0 none;
    }
    
    .time {
      margin-right: 10px;
      font-style: normal;
      float: right;
    }
    
    .spans {
      float: right;
      color: #f40;
    }
  </style>
</head>

<body>
  <div id=‘app‘ class="weibo">
    <textarea class="weibo-text" v-model=‘text‘ @keyup.shift.13=‘fabu‘ @input=‘a‘></textarea>
    <input class="weibo-btn" value="发布" type="button" @click="fabu"><span class="spans">{{ len }}/100</span>
    <ul class="weibo-list">
      <!-- v-for 可以遍历数组 获取值 和索引 -->
      <li v-for=‘(item,index)  in xhs‘>
        <p class="a" class="content">{{item}}</p>
        <span class="time"></span>
        <!-- 点击删除的时候传一个数组的索引 -->
        <span class="del" @click=‘del(index)‘>删除</span>
      </li>
    </ul>
  </div>
</body>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script>
  new Vue({
    el: #app,
    data: {
      // 留言的内容
      xhs: [],
      // 输入的内容
      text: ‘‘,
      // 规定输入的长度
      len: 100,
    },
    methods: {
      // 点击发布
      fabu() {
        // 因为用了v-model 所以可以获取文本域的值

        this.xhs.push(this.text);
        // 发布完之后回到初始值
        this.text = ‘‘;
        this.len = 100
      },
      // 删除
      del(index) {
        this.xhs.splice(index, 1)

      },
      // 文本域改变事件
      a() {
        this.len = 100 - (this.text.length);
        // 给他一个条件是因为 用户在复制进去的时候可输入的字数会变成负数
        if (this.len < 0) {
          this.len = 0;
        }
        // 输入100个字节的时候就不可以输入了
        this.text = this.text.substr(0, 99)
      }
    }

  })
</script>

</html>

<!-- 有什么bug联系我 谢谢-------- -->

 实现简单的vue 发布微博的案例

技术图片

 

VUE实现微博发布效果

标签:pre   charset   发布   tom   meta   script   条件   col   spl   

原文地址:https://www.cnblogs.com/lwa1999/p/11779631.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!