zhuangside 发表于 2021-9-4 21:59:00

vitrite 窗口透明小工具

<font face="微软雅黑"><font size="2"><font style="background-color:rgb(255, 255, 255)">小巧窗口透明,</font><br />
<font style="background-color:rgb(255, 255, 255)">快捷键Ctrl + Shift + (1到9到0)</font></font></font><font color="#333333"><font style="background-color:rgb(255, 255, 255)"><font face="微软雅黑">1暗示最通明,9暗示最不通明,而0则暗示运用Windows默许通明度。</font></font></font><font face="微软雅黑"><font size="2"><br />
</font></font><br />
<font face="微软雅黑"><font color="#333333"><font style="background-color:rgb(255, 255, 255)">它可以调整处在上方的窗口透明度,使您能够同时查看两个全屏窗口中的内容。</font></font></font><br />
<font color="#333333"><font style="background-color:rgb(255, 255, 255)"><font face="微软雅黑">另一个功能是能够切换窗口的“始终“”</font></font></font><font color="#333333"><font style="background-color:rgb(255, 255, 255)"><font face="微软雅黑">在上面”。只需按“Ctrl Shift+”(这是加号)就可以</font></font></font><font color="#333333"><font style="background-color:rgb(255, 255, 255)"><font face="微软雅黑">将使活动窗口保持在其他窗口的顶部。</font></font></font><br />
<font color="#333333"><font style="background-color:rgb(255, 255, 255)"><font face="微软雅黑">再次按下即可取消置顶</font></font></font><br />

<ignore_js_op>



<div class="tip tip_4 aimg_tip" id="aimg_2329274_menu" style="position: absolute; display: none" disautofocus="true">
<div class="xs0">
<p><strong>image.png</strong> <em class="xg1">(75.83 KB, 下载次数: 0)</em></p>
<p>
<a href="https://www.52pojie.org/forum.php?mod=attachment&aid=MjMyOTI3NHwwOGI0YjZhOHwxNjMxMjU2ODM1fDQ1MjE1NHwxNTA2Mzcx&nothumb=yes" target="_blank">下载附件</a>

</p>

<p class="xg1 y">2021-9-4 21:50 上传</p>

</div>
<div class="tip_horn"></div>
</div>

</ignore_js_op>
安装版链接:<font color="#3f3f3f"><font style="background-color:rgb(194, 236, 178)"><font face="Arial, 微软雅黑, 宋体, 新宋体, sans-serif">https://wwr.lanzoui.com/iYue4tm2mwh</font></font></font><br />
<font color="#3f3f3f"><font style="background-color:rgb(194, 236, 178)"><font face="Arial, 微软雅黑, 宋体, 新宋体, sans-serif">密码:6ov8</font></font></font><br />
<font face="Arial, 微软雅黑, 宋体, 新宋体, sans-serif"><font color="#3f3f3f">免安装版:</font></font><font color="#3f3f3f"><font style="background-color:rgb(194, 236, 178)"><font face="Arial, 微软雅黑, 宋体, 新宋体, sans-serif">https://wwr.lanzoui.com/ilyOutm33xa</font></font></font><font face="Arial, 微软雅黑, 宋体, 新宋体, sans-serif"><font color="#3f3f3f"><br />
</font></font><br />
<font color="#333333"><font style="background-color:rgb(255, 255, 255)"><font face="微软雅黑"><br />
</font></font></font>

cpnorg 发表于 2021-9-5 08:10:00

暂时想不到这类软件的作用

QuTengFei 发表于 2021-9-5 08:37:00

又不是仅标题栏二十整个窗口

freckle 发表于 2021-9-5 08:37:00

<img src="https://www.52pojie.org/static/image/smiley/default/3.gif" smilieid="907" border="0" alt="" />没Winformation好用。按0无法恢复“实体”,0和9一样。退出后还有后遗症,重启电脑才恢复。

mokson 发表于 2021-9-5 08:38:00

这么小的程序,是用什么编程软件做的?

freckle 发表于 2021-9-5 08:39:00

<div class="quote"><blockquote><font size="2"><a href="https://www.52pojie.org/forum.php?mod=redirect&goto=findpost&pid=39914001&ptid=1506371" target="_blank"><font color="#999999">cpnorg 发表于 2021-9-5 08:10</font></a></font><br />
暂时想不到这类软件的作用</blockquote></div><br />
我用来做图的拼接,比如K线拼接,还算好用

boxer 发表于 2021-9-5 08:52:00

<div class="quote"><blockquote><font size="2"><a href="https://www.52pojie.org/forum.php?mod=redirect&goto=findpost&pid=39914168&ptid=1506371" target="_blank"><font color="#999999">mokson 发表于 2021-9-5 08:38</font></a></font><br />
这么小的程序,是用什么编程软件做的?</blockquote></div><br />
ahk脚本也很简单<br />
<div style="padding:15px 0;"><div style="font-size:12px;"> <em class="viewsource" style="cursor:pointer;font-size:12px;color:#369 !important;">纯文本查看</em> <em class="copycode" style="cursor:pointer;font-size:12px;color:#369 !important;">复制代码</em></div><pre class="brush: javascript; gutter: true">&gt;!up::
        WinGet, n, transparent,A
        n := !n?255:n
        if (n &gt;= 255)
        {
                tips(&quot;关闭透明效果&quot;, 300)
                WinSet, transparent, off,A
                return
        }
        n += 5
        tips(&quot;增加不透明度:&quot; . n, 200)
        WinSet, Transparent, %n%, A               
return
&gt;!down::
        WinGet, n, transparent,A
        n := !n?255:n
        if (n &lt;=20)
                return
        n -= 5
        tips(&quot;减少不透明度: &quot; . n, 200)
        WinSet, Transparent, %n%, A               
return
</pre></div>

lin6652001 发表于 2021-9-5 10:00:00

谢谢分享,试试好不好用

猪八姐 发表于 2021-9-5 10:44:00

试试好不好???

lin6652001 发表于 2021-9-5 11:59:47

小工具,下载玩玩,谢了试一下,看看。
页: [1]
查看完整版本: vitrite 窗口透明小工具