forked from itorr/nbnhhsh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (67 loc) · 3.34 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>能不能好好说话?</title>
<meta name="viewport" content="width=device-width,user-scalable=0">
<link rel="stylesheet" href="res/base.css">
<link rel="stylesheet" href="res/document.css">
</head>
<body>
<header>
<h1>能不能好好说话?</h1>
<p>😩</p>
<p>拼音首字母缩写释义工具</p>
</header>
<div id="editor">
<textarea v-model="text" placeholder="输入含有首字母缩写的文字" @input="nbnhhsh()"></textarea>
<div class="func-nbnhhsh-box" v-if="show">
<div class="nbnhhsh-loading" v-if="loading">加载中…</div>
<div class="nbnhhsh-tag-list" v-else-if="tags.length">
<div class="nbnhhsh-tag-item" v-for="tag in tags">
<h4>{{tag.name}}</h4>
<div class="nbnhhsh-tran-list" v-if="tag.trans">
<span class="nbnhhsh-tran-item" v-for="tran in tag.trans">{{tran}}</span>
</div>
<div v-else-if="tag.inputting && tag.inputting.length !==0">
<div class="nbnhhsh-inputting-list">
<h5>有可能是</h5>
<span class="nbnhhsh-inputting-item" v-for="input in tag.inputting">{{input}}</span>
</div>
</div>
<div class="nbnhhsh-notran-box" v-else @click.prevent="submitTrans(tag.name)">
尚未录入,我来提交对应文字
</div>
<a @click.prevent="submitTrans(tag.name)" class="nbnhhsh-add-btn" title="我来提交对应文字"></a>
</div>
</div>
<div class="nbnhhsh-loading" v-else>没有匹配到拼音首字母缩写</div>
</div>
</div>
<div class="content-box">
<h2>例文</h2>
<blockquote>
<p>草这个tmd网络世界我真的太恨缩写了。</p>
<p>
随便点开一条微博,艺人名字要缩写,gzs工作室也要缩写,gc广场他妈的也是缩写,hgr老子猜了老半天,百度一下才知道是韩国人,拳头硬了。<br>
讲个话开头也缩写,srds虽然但是,yjgj有句港句,bbl求求了。(这个谁看得出来你妈的)<br>
夸人骂人也都缩写,yjjc一骑绝尘,wdcc弯道超车,yygq阴阳怪气,myss美颜盛世,rnb我也猜了半天,最后被告知是really牛b的意思,哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈又硬了呢。<br>
最要命的还不是这些,我刚刚看到网友评价什么什么他jb的什么,我以为jb就是jb的意思吧,但联系上下文句子又读不通,想了一分钟,哇,原来jb是姜滨的缩写啊!<br>
jb=姜滨,我离开了。</p>
<p>@你里哥哥</p>
</blockquote>
<h2>为什么做这东西?</h2>
<p>社交平台上通过拼音首字母缩写指代特定词句的情况越来越多,为了让常人勉强能理解这一门另类沟通方式、做了这一个划词翻译油猴脚本。</p>
<h2>油猴脚本</h2>
<p>安装好油猴脚本浏览器插件之后,访问 <a href="nbnhhsh.user.js">nbnhhsh.user.js</a> 完成脚本安装</p>
<blockquote>
<p>脚本版本目前仅会在 <code>https://weibo.com/*</code> 页面下运行,划词时会提交所选文字以用于转义。</p>
</blockquote>
<h2>贡献词条</h2>
<p>在每一个词条右上角都有 <code>+</code> 图标的按钮,点击可以提交对应文字,审核后会整理录入。</p>
</div>
<script src="https://cdn.bootcss.com/vue/2.6.11/vue.min.js"></script>
<script src="dist/App.js"></script>
<script src="nbnhhsh.user.js"></script>
</body>
</html>