java1200例-文字的探照灯效果
Posted 光阴易逝,岂容我待
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java1200例-文字的探照灯效果相关的知识,希望对你有一定的参考价值。
<style> .mydiv{ color:white; filter:light; height:300; font-size:35px; left:10px; position:relative; top:10px; width:400px; } </style> <script type="text/javascript"> function init(){ document.all.div1.filters.light.addAmbient(200,10,40,30); document.all.div1.filters.light.addCone(400,400,120,160,100,255,255,80,120,5); } function move(){ document.all.div1.filters.light.moveLight(1,window.event.x-20,window.event.y,0,1); } </script> <body onload="init()" onmousemove="move()"> <div id="div1" class="mydiv"> 今天天气阴 </div> </body>
效果图:
以上是关于java1200例-文字的探照灯效果的主要内容,如果未能解决你的问题,请参考以下文章