The W65A or W65IR weapon lights in this link do not include batteries
W65A package includes: LH1 WH light head, W65 body, TC69 or TC68 tail cap
W65IR package includes: LH2 IR light head, W65 body, TC69 or TC68 tail cap
WARNING: This product can expose you to chemicals including Lead, which is known to the State of California to cause cancer, birth defects or other reproductive harm. For more information, go to: www.P65Warnings.ca.gov ,Click here
.buy-record img{margin:0px !important;}
-
User name
Member Level
Quantity
Specification
Purchase Date
.buy-record img{margin:0px !important;}
Satisfaction :
.popups{ position:fixed; background:rgba(0,0,0,0.4); bottom:0; top:0;left:0;right:0; display:none;}
.shows{position: absolute;display: none}
.bigs{ width:300px; }
.lefts{ position:absolute; top:125px; left:-50px; cursor:pointer;}
.contecenter{width: 100%;height: 100%;position: relative;display: flex;justify-content: center;align-items: center;top:0;}
.rights{ position:absolute; top:125px; right:-50px; cursor:pointer;}
$(function(){
$(“.popups”).click(function(){
$(“.shows”).hide();
$(this).hide();
});
function changeTop(){
var bigs = $(“.bigs”).height();
var tops = (bigs – 57)/2;
$(“.lefts,.rights”).css(“top”,tops+’px’);
}
$(“.show_pic_div img”).click(function(){
$(“.popups”).show();
$(“.shows”).show();
bigImg=$(this).attr(“src”);//获取点击图片的地址
$(“.shows img.bigs”).attr(“src”,bigImg); //更换大图的图片地址
_index=$(this).index();//保存图片的序列号
changeTop()
});
$(“.shows .rights”).click(function(){
event.stopPropagation();
var maxlen = $(“.show_pic_div img”).length;
_index++;
if(_index>maxlen-1){_index=0};
bigImg=$(“.show_pic_div img”).eq(_index).attr(“src”);
$(“.shows img.bigs”).attr(“src”,bigImg);
changeTop()
});
$(“.shows .lefts”).click(function(){
event.stopPropagation();
_index–; //序列号加1 _index+1
var maxlen = $(“.show_pic_div img”).length;
if(_index<0){_index=maxlen-1};
bigImg=$(".show_pic_div img").eq(_index).attr("src");
$(".shows img.bigs").attr("src",bigImg);
changeTop()
});
});