我在我的网页上使用 jqZoom 和 Bootstrap,并且 Bootstrap 打破了 jqZoom 的缩放,如JqZoom 和 Twitter Bootstrap 冲突中所述
我还为可缩放图像应用了设置“最大宽度:无”的修复。这在某些情况下解决了问题。但如果大图像真的很大,缩放的行为就好像只有图像的一部分存在。似乎无法根据图像的大小调整镜头。
我怎样才能解决这个问题?
您可以在以下两个链接中看到效果。它们分别显示两个图像。第一个在这两种情况下都很好用。第二个只有没有 Bootstrap。
源码如下,部分只存在于带有注释的带有 Bootstrap的版本中:
<!DOCTYPE html>
<html lang="en">
<head>
<!-- the following is only present in the *with Bootstrap* section -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<!-- the following is only present in the *with Bootstrap* section -->
<link rel="stylesheet" type="text/css" href="stylesheets/jquery.jqzoom.css" >
<style>
.flowBreak
{
clear:both
}
.zoomable img {max-width:none}
</style>
</head>
<body>
<h5>Example 1</h5>
<a href='images/selfTest.png' class='zoomable'>
<img src='images/selfTest_small.png' />
</a>
<div class='flowBreak'>
</div>
<h5>Example 2</h5>
<a href='images/example2.png' class='zoomable'>
<img src='images/example2_small.png' />
</a>
<div class='flowBreak'>
</div>
<script src='//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js' type='text/javascript'>
</script>
<script src='javascripts/jquery.jqzoom-core-pack.js' type='text/javascript'>
</script>
<script type='text/javascript'>
$(document).ready(function(){
$('.zoomable').jqzoom();
});
</script>
</body>
</html>