html5 svg手电筒照明特效

来源:https://www.sucaihuo.com/js/3395.html 2018-01-15 17:41浏览(1174) 收藏

html5 svg手电筒照明特效是一个很逼真的手电筒照射到地上的光亮效果,光源随鼠标指针移动。
html5 svg手电筒照明特效
分类:html5 > SVG 难易:初级
查看演示 下载资源 下载积分: 10 积分

js代码

<script>
const svgNode = document.querySelector('svg');
const fePointLightNode = svgNode.querySelector('fePointLight');
svgNode.addEventListener('mousemove', handleMove);
svgNode.addEventListener('touchmove', handleMove);
function handleMove(event) {
  fePointLightNode.setAttribute('x', event.clientX);
  fePointLightNode.setAttribute('y', event.clientY);
}</script>
标签: 照明光亮
评论0
头像

系统已开启自动识别垃圾评论机制,识别到的自动封号,下载出错或者资源有问题请联系全栈客服QQ 1915635791

1 2