Javascript/jQuery 이미지 회전 돋보기
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* 감싸는 div */
.wrap {
position: relative;
width: 500px;
height: 500px;
margin: 0 auto;
}
/* 확대될 타겟이미지*/
.target {
display: block;
width: 100%;
}
/* 돋보기 */
.magnifier {
width: 200px;
height: 200px;
position: absolute;
border-radius: 100%;
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.85), 0 0 3px 3px rgba(0, 0, 0, 0.25);
display: none;
}
</style>
<script src="<?php echo WV_JS_URL; ?>/jQueryRotate.js"></script>
<!-- <h3 class="newp_tit"><?php echo $wv['title']; ?></h3> -->
<div style="text-align: center">
<input type="button" id="rotateL" name="act_button" value="왼쪽으로 회전" class="btn_lsmall bx-white">
<input type="button" id="rotateR" name="act_button" value="오른쪽으로 회전" class="btn_lsmall bx-white">
<input type="button" id="close" name="act_button" value="닫기" class="btn_lsmall bx-white">
<input type="button" id="winsizeup" name="act_button" value="창키우기" class="btn_lsmall bx-white">
<input type="button" id="winsize" name="act_button" value="창되돌리기" class="btn_lsmall bx-white">
</div>
<div class="new_win_body">
<!-- <div> -->
<img id="bigImg" class="target" src="<?php echo $filename;?>" width="600" data-zoom="3">
<!-- </div> -->
</div>
<script type="text/javascript">
$(function(){
var angle = 0;
$("#rotateL").click(function(){
angle += -90; $("#bigImg").rotate(angle);
});
$("#rotateR").click(function(){
angle += +90; $("#bigImg").rotate(angle);
});
$("#close").click(function(){
window.self.close();
});
$("#winsize").click(function(){
popsize(650,900) ;
});
$("#winsizeup").click(function(){
popsize(950,1200) ;
});
});
var target = $('.target');
//1
var zoom = target.data('zoom');
$(".new_win_body")
.on('mousemove', magnify)
.prepend("<div class='magnifier'></div>")
.children('.magnifier').css({
"background": "url('" + $(".target").attr("src") + "') no-repeat",
// 2
"background-size": target.width() * zoom + "px " + target.height() * zoom+ "px"
});
var magnifier = $('.magnifier');
function magnify(e) {
// 마우스 위치에서 .magnify의 위치를 차감해 컨테이너에 대한 마우스 좌표를 얻는다.
var mouseX = e.pageX - $(this).offset().left;
var mouseY = e.pageY - $(this).offset().top;
// 컨테이너 밖으로 마우스가 벗어나면 돋보기를 없앤다.
if (mouseX < $(this).width() && mouseY < $(this).height() && mouseX > 0 && mouseY > 0) {
magnifier.fadeIn(100);
} else {
magnifier.fadeOut(100);
}
//돋보기가 존재할 때
if (magnifier.is(":visible")) {
// 3
var rx = -(mouseX * zoom - magnifier.width() /2 );
var ry = -(mouseY * zoom - magnifier.height() /2 );
// var rx = -(mouseX / target.width() * target[0].naturalWidth - magnifier.width() / 2);
// var ry = -(mouseY / target.height() * target[0].naturalHeight - magnifier.height() /2);
//돋보기를 마우스 위치에 따라 움직인다.
//돋보기의 width, height 절반을 마우스 좌표에서 차감해 마우스와 돋보기 위치를 일치시킨다.
var px = mouseX - magnifier.width() / 2;
var py = mouseY - magnifier.height() / 2;
// 6
magnifier.css({
left: px,
top: py,
backgroundPosition: rx + "px " + ry + "px"
});
}
}