日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

本篇文章給大家帶來了關于Laravel8/LaravelS的相關知識,其中主要介紹了Laravel8基于LaravelS實現彈幕功能的方法步驟,感興趣的朋友,下面一起來看一下,希望對大家有幫助。

Laravel8基于LaravelS實現彈幕彈幕功能

簡介

Laravel8基于LaravelS實現彈幕彈幕功能。前面學了基于Swoole實現視頻彈幕功能,這篇文章就來實現一個基于Laravel8的視頻彈幕功能。如果對webpack不熟悉,那么在安裝vue-baberrage組件時可能會報錯卻不知如何解決。下面開始一步一步實現。

前面學了基于Swoole實現視頻彈幕功能,這篇文章就來實現一個基于Laravel8的視頻彈幕功能。如果對webpack不熟悉,那么在安裝vue-baberrage組件時可能會報錯卻不知如何解決。下面開始一步一步實現。

第一步:安裝Laravel8

composer create-project laravel/laravel labarrage

第二步:Laravel8中使用vue

Laravel8如何使用vue,請參考 Laravel8中使用vue。

注意:安裝vue時請使用 php artisan ui vue --auth

第三步:安裝及安裝vue-baberrage

安裝vue及bootstrap

npm install

安裝彈幕組件

npm install vue-baberrage --save

運行

npm run dev

如果遇到BREAKING CHANGE: webpack < 5 used to include錯誤,請參考 Laravel8使用webpack報錯的解決方法。

后續只要文件改動就需要重新編譯,后續將不再復述。

第四步:安裝LaravelS實現Websocket服務器

請參考 Laravel8使用laravel-s實現WebSocket服務器

第五步:項目中引入vue-baberrage組件

文件:resources/js/app.js 新增如下內容

import { vueBaberrage } from 'vue-baberrage'
Vue.use(vueBaberrage)
  
Vue.component('danmu-component', require('./components/DanmuComponent.vue').default);

第五步:編寫文彈幕組件

后續實現代碼根據 學院君 文章改動

位置:resources/js/components/DanmuComponent.vue

<template>
<div id="danmu">
  <div>
    <vue-baberrage
      :isShow = "barrageIsShow"
      :barrageList = "barrageList"
      :loop = "barrageLoop"
      :maxWordCount = "60"
      >
    </vue-baberrage>
  </div>
  <div>
    <div>
      <select v-model="position">
        <option value="top">從上</option>
        <option value="abc">從右</option>
      </select>
      <input type="text" style="float:left" v-model="msg"/>
      <button type="button" style="float:left" @click="addToList">發送</button>
    </div>
  </div>
</div>
</template>
<script>
import { MESSAGE_TYPE } from 'vue-baberrage'
export default {
  name: 'danmu',
  data () {
    return {
      msg: 'hello 自如初!',
      position: 'top',
      barrageIsShow: true,
      currentId: 0,
      barrageLoop: false,
      barrageList: []
    }
  },
  methods: {
    removeList () {
      this.barrageList = []
    },
    addToList () {
      if (this.position === 'top') {
        this.barrageList.push({
          id: ++this.currentId,
          msg: this.msg + this.currentId,
          barrageStyle: 'top',
          time: 8,
          type: MESSAGE_TYPE.FROM_TOP,
          position: 'top'
        })
      } else {
        this.barrageList.push({
          id: ++this.currentId,
          msg: this.msg,
          time: 15,
          type: MESSAGE_TYPE.NORMAL
        })
      }
    }
  }
}
</script>
<style scoped>
#danmu {
  text-align: center;
  color: #2c3e50;
}
.stage {
  height: 300px;
  width: 100%;
  background: #025d63;
  margin: 0;
  position: relative;
  overflow: hidden;
}
h1, h2 {
  font-weight: normal;
}
ul {
  list-style-type: none;
  padding: 0;
}
li {
  display: inline-block;
  margin: 0 10px;
}
a {
  color: #42b983;
}
.baberrage-stage {
  z-index: 5;
}
.baberrage-stage .baberrage-item.normal{
  color:#FFF;
}
.top{
  border:1px solid #66aabb;
}
.danmu-control{
  position: absolute;
  margin: 0 auto;
  width: 100%;
  bottom: 300px;
  top: 70%;
  height: 69px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  justify-content: center;
  div {
    width: 300px;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 5px;
    border: 2px solid #8ad9ff;
  }
  input,button,select{
    height:35px;
    padding:0;
    float:left;
    background:#027fbb;
    border:1px solid #CCC;
    color:#FFF;
    border-radius:0;
    width:18%;
    box-sizing: border-box;
  }
  select{
    height:33px;
    margin-top:1px;
    border: 0px;
    outline: 1px solid rgb(204,204,204);
  }
  input{
    width:64%;
    height:35px;
    background:rgba(0,0,0,.7);
    border:1px solid #8ad9ff;
    padding-left:5px;
    color:#FFF;
  }
}
</style>

第六步:視圖中使用組件

位置:resources/views/danmu.blade.php

@extends('layouts.app')
  
@section('content')
<danmu-component></danmu-component>
@endsection

第七步:注冊路由

Route::get('/danmu', function() {
  return view('danmu');
});

執行 npm run dev

第八步:編寫websocket服務器

文件:App\Handlers\WebSocketHandler.php

<?php
namespace App\Handlers;
use Hhxsv5\LaravelS\Swoole\WebSocketHandlerInterface;
use Illuminate\Support\Facades\Log;
use Swoole\Http\Request;
use Swoole\WebSocket\Frame;
use Swoole\WebSocket\Server;
class WebSocketHandler implements WebSocketHandlerInterface
{
  public function __construct()
  {
  }
  // 連接建立時觸發
  public function onOpen(Server $server, Request $request)
  {
    Log::info('WebSocket 連接建立:' . $request->fd);
  }
  // 收到消息時觸發
  public function onMessage(Server $server, Frame $frame)
  {
    // $frame->fd 是客戶端 id,$frame->data 是客戶端發送的數據
    Log::info("從 {$frame->fd} 接收到的數據: {$frame->data}");
    foreach($server->connections as $fd){
      if (!$server->isEstablished($fd)) {
        // 如果連接不可用則忽略
        continue;
      }
      $server->push($fd , $frame->data); // 服務端通過 push 方法向所有連接的客戶端發送數據
    }
  }
  // 連接關閉時觸發
  public function onClose(Server $server, $fd, $reactorId)
  {
    Log::info('WebSocket 連接關閉:' . $fd);
  }
}

第九步:laravels.php注冊

文件:config/laravels.php

'websocket' => [
  'enable' => true,
  'handler' => \App\Handlers\WebSocketHandler::class,
],

第十步:啟動

php bin/laravels start

這樣就完成啦


分享到:
標簽:Laravel8彈幕功能 LaravelS實現彈幕功能
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定