js簡単な虫めがね効果を実現します。
Jsで簡単な虫めがね効果を実現します。参考にしてください。具体的な内容は以下の通りです。
ここで鏡を拡大する効果は、マウスを写真の上に置くと半透明のカバーがあり、画像の一つのエリアが拡大され、右側に表示されます。マウスを動かすと右の大きな画像も部分的に移動します。ここの拡大は本当の拡大ではなく、等分移動です。以下は実装コードです。
cssスタイルコードは以下の通りです。
ルーペの素晴らしい記事については、リンクをクリックしてください。
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。
ここで鏡を拡大する効果は、マウスを写真の上に置くと半透明のカバーがあり、画像の一つのエリアが拡大され、右側に表示されます。マウスを動かすと右の大きな画像も部分的に移動します。ここの拡大は本当の拡大ではなく、等分移動です。以下は実装コードです。
cssスタイルコードは以下の通りです。
<style>
.s_box{width:400px;height: 300px;position: absolute;left: 50px;top:100px;}
.s_box img{width: 400px;height: 300px;}
.s_box span{width: 130px;height: 100px;background: rgba(200,200,200,0.5);position: absolute;left:0;top:0;display: none;cursor:move;}
.b_box{width: 400px;height: 300px;overflow: hidden;position: absolute;left:500px;top:100px;display: none;}
.b_box img{width: 1200px;height: 900px;position: absolute;left:0;top:0;}
.list{margin: 0;padding: 0;list-style: none;position: absolute;left:50px;top:430px;}
.list li{float: left;margin: 0 10px;}
.list li img{width: 100px;height: 80px;}
</style>
htmlコードは以下の通りです
<body>
<div class="s_box">
<img src="../img/large1.jpg" alt="">
<span></span>
</div>
<div class="b_box">
<img src="../img/large1.jpg" alt="">
</div>
<ul class="list">
<li><img src="../img/large1.jpg" alt=""></li>
<li><img src="../img/large2.jpg" alt=""></li>
</ul>
</body>
jsの主要コードは以下の通りです。
// :
// 1.
// 2.
// 3.
// 4. : 、 ,
// 5.
<script>
class Large{
constructor(){
this.sBox = document.querySelector(".s_box");
this.sImg = document.querySelector(".s_box img");
this.sSpan = document.querySelector(".s_box span");
this.bBox = document.querySelector(".b_box");
this.bImg = document.querySelector(".b_box img");
//
this.li = document.querySelectorAll(".list li");
}
addEvent(){
var that = this;
this.sBox.onmouseover = function(){
that.over();
}
this.sBox.onmousemove = function(eve){
var e = eve || window.event;
that.move(e);
}
this.sBox.onmouseout = function(){
that.out();
}
// :
for(var i=0;i<this.li.length;i++){
this.li[i].onclick = function(){
that.sImg.src = this.children[0].src;
that.bImg.src = this.children[0].src;
}
}
}
over(){
this.sSpan.style.display = "block";
this.bBox.style.display = "block";
}
move(e){
// left top
var l = e.pageX - this.sBox.offsetLeft - this.sSpan.offsetWidth/2;
var t = e.pageY - this.sBox.offsetTop - this.sSpan.offsetHeight/2;
//
if(l<0) l=0;
if(t<0) t=0;
if(l > this.sBox.offsetWidth - this.sSpan.offsetWidth){
l = this.sBox.offsetWidth - this.sSpan.offsetWidth;
}
if(t > this.sBox.offsetHeight - this.sSpan.offsetHeight){
t = this.sBox.offsetHeight - this.sSpan.offsetHeight;
}
//
this.sSpan.style.left = l + "px";
this.sSpan.style.top = t + "px";
//
var x = l / (this.sBox.offsetWidth - this.sSpan.offsetWidth);
var y = t / (this.sBox.offsetHeight - this.sSpan.offsetHeight);
// ,
this.bImg.style.left = (this.bBox.offsetWidth - this.bImg.offsetWidth) * x + "px";
this.bImg.style.top = (this.bBox.offsetHeight - this.bImg.offsetHeight) * y + "px";
}
out(){
this.sSpan.style.display = "none";
this.bBox.style.display = "none";
}
}
//
var l = new Large();
l.addEvent();
</script>
実現効果:ルーペの素晴らしい記事については、リンクをクリックしてください。
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。