1
manhere 2012-05-20 22:57:40 +08:00
汉王有这种软件啊,忘记名字了。。。
|
3
toothpaste 2012-05-20 23:00:02 +08:00 1
|
4
magicshui OP @toothpaste 这个帅~
|
5
lex 2012-05-20 23:10:46 +08:00
如果自己做的话,可以用webview,然后html大概是这样:
<div class="para"> <textarea class="target">大菠萝</textarea> <p class="source">Diablo</p> </div> <div class="para"> <textarea class="target">Leah</textarea> <p class="source">莉亚</p> </div> <style> .para:hover{background:lightgray;} .target{float:right;width:50%;background:transparent;border:0;} .source{width:50%;} }</style> |