企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
> > 当鼠标移动到图片上的时候,黑色蒙版缓慢显示 > ## 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大小写