我试图在Web应用程序中使用这一点jQuery。它似乎在jsfiddle中工作,但在我的应用程序中实现时却没有。这是我的代码:
$('.myimage').mouseenter(function() {
$(this).effect('bounce',500);
});
Here是我的傻瓜。
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link rel="stylesheet" type="text/css" href= "style3.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/jquery-ui.min.js"></script>
<script src="jquery.effects.bounce.js"></script>
</head>
<body>
<img class="myimage" src ="https://pbs.twimg.com/profile_images/3513354941 /24aaffa670e634a7da9a087bfa83abe6.png">
<script>
$(document).ready(function () {
$('.myimage').mouseenter(function () {
$(this).effect('bounce', 500);
});
});
</script>
</body>
</html>
答案 0 :(得分:0)
将代码包裹在$(document).ready(function () {
中$(document).ready(function () {
$('.myimage').mouseenter(function () {
$(this).effect('bounce', 500);
});
});
asn不要忘记添加jQuery library
文件
答案 1 :(得分:0)
$(document).ready(function () {
$('.myimage').mouseenter(
function () {
$(this).effect('bounce', 500);
});
});
它需要准备好文件。
另外 - 只是厌倦了在你的jsfiddle中你的图像在几次后再向上移动30-40 px