1

我正在尝试创建我认为应该非常简单的东西。我有一个带有背景图像的静态固定 div,我想在它上面拖动其他图像并调整其大小。

我所拥有的似乎根本不起作用。

<!DOCTYPE html>
<html>
<head>
<title>test</title>
<script type="text/javascript" src="//code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
  $(".image").resizable({aspectRatio:true}).parent().draggable();
});
</script>
<style>
#container {
  width: 640px;
  height: 480px;
  border: solid 1px #000;
  margin: 0 auto;
  background-image:url('background.png');
}
</style>
</head>
<body>

<div id="container"></div>

<img class="image" src="example.png">
<img class="image" src="example1.png">
<img class="image" src="example2.png">

</body>
</html>

有人可以解释我做错了什么吗?

4

1 回答 1

1

尝试

<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/
themes/smoothness/jquery-ui.css" /> 

如页面 http://jqueryui.com/resizable给出的,现在将在 Firefox 中工作。

在 chrome 中图像越来越小,这就是为什么它们是隐形的

.image{width:200px;height:200px;} 

在你的 CSS

于 2013-11-08T12:27:43.763 回答