gpt4 book ai didi

javascript - 如何添加包装器并绑定(bind)到特定元素

转载 作者:行者123 更新时间:2023-11-30 18:34:02 24 4
gpt4 key购买 nike

我的代码有 2 个问题:

  1. 我想限制脚本对 div <div id="photo"> 的影响
  2. 如何为脚本创建一个子层,以便在触发动画时页面中的所有元素都不会改变位置。

这是我的代码希望你能帮忙。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
.selected { border-style:solid; border-width:10px; border-color:#C00; margin:auto; z-index:2;}
#cret {
position:relative;
z-index:3;
border-style:solid; border-width:5px; border-color:#000000;
padding: 10px 10px 10px 10px;
margin:auto;
width:620px;
height:420px;
}
img {
position:static;
z-index:1;
}
</style>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"/></script>
</head>

<body>
<script type="text/javascript"/>
$(document).ready(function() {
$('img').width('10%').height('10%');

$('img').on("click", function() {
$(this).wrap('<div id="cret"/>');
$(this).animate({width:'600px', height:'400px'}).addClass("selected");
});

$(document).on("click", function(){
$("img").unwrap();
});

$('img').click(function(){ return false; });

$('#cret').click(function(){ return false; });

$(document).on("click", function(){
$('img').animate({width:'10%', height:'10%'}).removeClass("selected");
});

$('img').click(function(){ return false; });

$('#cret').click(function(){ return false; });
});
</script>

<div id="photo">
<img src="image source"/>
<img src="image source"/>
</div>
</body>
</html>

最佳答案

要限制选择器的范围,可以指定更精确的jquery选择器而不是 $('img') $('#photo img');它只会影响照片 id div 中存在的 img。

您应该检查您的选择器,动画将更有效地用于正确的选择器......就像把你的动画只放在 img.selected 上。

希望对您有所帮助 http://api.jquery.com/category/selectors/

关于javascript - 如何添加包装器并绑定(bind)到特定元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8803762/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com