简体   繁体   English

需要帮助才能使用jQuery效果

[英]need help to use jQuery effect

I am using this function to make animation for boxes 我正在使用此功能制作盒子的动画

$('.row3').adipoli({
                    'startEffect' : 'transparent',
                'hoverEffect' : 'boxRandom'
                });

there is an other effect what i want to use 还有我要使用的其他效果

$('.row1').adipoli({
                    'startEffect' : 'normal',
                    'hoverEffect' : 'popout'
                });

I just want to use both effect for one box so is it possible to use? 我只想在一个盒子上同时使用两种效果,所以可以使用吗? if yes, how can i use? 如果是,我该如何使用?

i tried this one but it is not working 我尝试了这个,但是没有用

$('.row3').adipoli({
                    'startEffect' : 'transparent',
                'hoverEffect' : 'boxRandom',
                    'hoverEffect' : 'popout'
                });

Looking through the code of the plugin , it is not possible to have multiple hover effects applied. 查看插件代码,不可能应用多个悬停效果。

If you require this functionality you would be best to contact the author of the plugin to see if he can change this behaviour, or try and do it yourself or you could use another plugin which does have allow this behaviour. 如果您需要此功能,则最好与插件作者联系,以了解他是否可以更改此行为,或者自己尝试进行操作,或者您可以使用其他具有此行为的插件。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM