本篇文章給大家帶來了關於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伺服器
第五步:專案中引入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 class="stage">
<vue-baberrage
:isShow = "barrageIsShow"
:barrageList = "barrageList"
:loop = "barrageLoop"
:maxWordCount = "60"
>
</vue-baberrage>
</div>
<div class="danmu-control">
<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 lang="scss" 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實現彈幕功能的詳細內容,更多請關注TW511.COM其它相關文章!