💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
> > 当鼠标移动到图片上的时候,黑色蒙版缓慢显示 > ## css ~~~ <style type="text/css"> #out{   width:100px;   height:100px;   background:black;   } #inner{    width:100px;    height:100px;    display:none;    background:red; } </style> ~~~ * * * * * ## html ~~~ <div id="out"> <div id="inner"></div> </div> ~~~ * * * * * ## js ~~~ <script> function (){ $('#inner').fadeIn(1000); } function (){ $('#inner').fadeOut(1000); } </script> ~~~ > 注意 jquery 大小写