@extends('layouts.app') @section('title', '新增無障礙掃描') @section('content')
返回清單
{{-- 掃描引擎說明 --}}
掃描引擎說明
掃描工具
Headless Chrome 渲染後靜態分析
掃描範圍
僅掃描輸入的 單一網址
不自動追蹤內部連結(不爬蟲)
掃描深度
僅限 第 1 層(單頁)
如需多頁請分次輸入各頁網址
新增無障礙掃描
@if($errors->any())
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
@csrf
@error('target_url')
{{ $message }}
@enderror
WCAG 標準等級 *
@foreach([ 'WCAG2A' => ['label'=>'A', 'color'=>'success', 'desc'=>'基本無障礙需求,最低合規要求'], 'WCAG2AA' => ['label'=>'AA', 'color'=>'primary', 'desc'=>'建議標準,政府網站法規要求(預設)'], 'WCAG2AAA' => ['label'=>'AAA', 'color'=>'warning', 'desc'=>'最高等級,完整無障礙支援'], ] as $val => $opt)
@endforeach
掃描引擎
@foreach([ 'htmlcs' => ['label'=>'HTML CodeSniffer', 'sub'=>'Pa11y 預設', 'color'=>'primary', 'desc'=>'嚴格對應 WCAG 成功標準,輸出詳細規則代碼,適合合規報告'], 'axe' => ['label'=>'axe-core', 'sub'=>'Deque Systems', 'color'=>'success', 'desc'=>'業界廣泛採用,誤報率低,適合開發階段持續整合'], 'lighthouse' => ['label'=>'Lighthouse', 'sub'=>'Google Chrome', 'color'=>'warning', 'desc'=>'輸出無障礙評分(0–100)及詳細稽核項目,與 Chrome DevTools 相同標準'], ] as $val => $opt)
@endforeach
多頁模式會從首頁收集同域內部連結,依序掃描至上限。
取消
@endsection @push('scripts') @endpush