注册 登录 充值会员 退出
网站、APP、小程序等定制开发,联系QQ 1206995177 毕业设计 java源码 PHP源码
充值

tooltip主题tippy.js动画提示插件

作者/代码整理:  (源码已亲测,不会安装的可以向QQ1915635791要安装视频教程) 发布日期:2022-02-04
tooltip主题tippy.js动画提示插件
tippy.js工具提示插件,提供多种动画效果和主题效果,并允许用户自定义tooltip主题和使用html代码作为tooltip的模板。


js代码

<script src="js/tippy.js"></script>
<script type="text/javascript">
	new Tippy('.tippy');
	new Tippy('.tippy-right', { position: 'right', animation: 'fade' })
	new Tippy('.tippy-scale', { position: 'top', animation: 'scale',arrow:'true'  })
	new Tippy('.tippy-arrow', { position: 'top', animation: 'scale',arrow:'true' });
	new Tippy('.tippy-perspective', { position: 'top', animation: 'perspective',arrow:'true' });
	new Tippy('.tippy-shift', { position: 'top', animation: 'shift',arrow:'true' });
	new Tippy('.tippy-light', { position: 'top', animation: 'scale',arrow:'true','theme':'light' })
	new Tippy('.tippy-honeybee', { position: 'top', animation: 'scale',arrow:'true',theme:'honeybee' });
	new Tippy('#tooltip-with-my-template', {
	  position:'bottom',
	  html: '#my-template-id',
	  arrow: true,
	  animation: 'fade'
	})
</script>