商品説明
- ■カメラ側はRCAP、DCプラグ モニタ側はRCAP、DCジャック仕様
- ■屋内および屋外(配管内)で使用可能な2本1体ケーブルです。
※屋外でのご使用時には適切な保護が必要です。
●RCAコネクタ式
家庭用電化製品でよく使われている黄色(ビデオ映像)、赤(ステレオ音声:右側)、白(ステレオ音声:左側)と同じコネクタ形状を採用しています。家庭用テレビやビデオデッキ、DVDレコーダーなどに直接接続可能です。
※接続に関するご不明点がございましたら、お気軽にお問い合わせください。
RCA端子ケーブルをカメラやレコーダーに接続する際は、BNC変換コネクタが必要となります。
ケーブルをご購入の際に、必要な個数をご確認のうえ、合わせてお求めください。
製品仕様 |
---|
ケーブル部 |
---|
映像線 | 0 && productPrice>0) {
let grossRate = 100 - (productPrice*100 / listPrice);
let rate = Math.round(grossRate);
let discountDisplay = document.querySelector(".c-product-priceDiscount");
if(rate > 0 && discountDisplay){
if(discountDisplay.innerHTML === ""){
discountDisplay.innerHTML = (rate == grossRate ? "" : CLASSIC.discountPrefix) + rate + "%OFF";
}
}
}
}
}
let optionsTable = document.querySelector(".c-product-optionsTable");
let optionsTableScrollBar = document.querySelector(".c-product-optionsTableScrollBar");
if(optionsTable){
CLASSIC.setDraggable(optionsTable);
if(optionsTableScrollBar){
let span = document.createElement("span");
optionsTableScrollBar.appendChild(span);
CLASSIC.publicCache.optionsTable = optionsTable;
CLASSIC.publicCache.optionsTableScrollBar = optionsTableScrollBar;
CLASSIC.publicCache.optionsTableScrollBarPointer = span;
optionsTableScrollHandler();
}
}
let reviewList = document.querySelector(".c-product-reviewList");
let reviewListScrollBar = document.querySelector(".c-product-reviewListScrollBar");
if(reviewList){
CLASSIC.setDraggable(reviewList);
if(reviewListScrollBar){
let span = document.createElement("span");
reviewListScrollBar.appendChild(span);
CLASSIC.publicCache.reviewList = reviewList;
CLASSIC.publicCache.reviewListScrollBar = reviewListScrollBar;
CLASSIC.publicCache.reviewListScrollBarPointer = span;
reviewListScrollHandler();
}
}
let optionsModalData = document.querySelector(".c-optionsModalData");
let optionsModalDataScrollBar = document.querySelector(".c-optionsModalDataScrollBar");
if(optionsModalData){
CLASSIC.setDraggable(optionsModalData);
if(optionsModalDataScrollBar){
let span = document.createElement("span");
optionsModalDataScrollBar.appendChild(span);
CLASSIC.publicCache.optionsModalData = optionsModalData;
CLASSIC.publicCache.optionsModalDataScrollBar = optionsModalDataScrollBar;
CLASSIC.publicCache.optionsModalDataScrollBarPointer = span;
optionsModalDataScrollHandler();
}
}
let optionsModalOpen = document.querySelector(".c-product-optionsModalOpen");
if(optionsModalOpen){
optionsModalOpen.addEventListener("click",function(){
jQuery(".l-optionsModal").addClass("active");
let optionsModalData = document.querySelector(".c-optionsModalData");
if(optionsModalData){
optionsModalData.scrollTop = 0;
}
if(window.innerWidth <= 1024){
jQuery(document.body).addClass("preventScroll");
}
});
}
let optionsModalClose = document.querySelector(".c-optionsModalClose");
if(optionsModalClose){
optionsModalClose.addEventListener("click",function(){
jQuery(".l-optionsModal").removeClass("active");
jQuery(document.body).removeClass("preventScroll");
});
}
let optionsModal = document.querySelector(".l-optionsModal");
if(optionsModal){
optionsModal.addEventListener("mousedown",function(e){
if(e.target == this){
jQuery(".l-optionsModal").removeClass("active");
jQuery(document.body).removeClass("preventScroll");
}
});
optionsModal.addEventListener("touchstart",function(e){
if(e.target == this){
jQuery(".l-optionsModal").removeClass("active");
jQuery(document.body).removeClass("preventScroll");
}
});
}
let quantityMinus = document.querySelector(".c-product-quantityMinus");
if(quantityMinus){
quantityMinus.addEventListener("click",function(){
let minQuantity = document.querySelector(".c-product-quantity input");
if(minQuantity){
minQuantity = parseInt(minQuantity.dataset.initial);
if(isNaN(minQuantity)){
minQuantity = 1;
}
}
else
{
minQuantity = 1;
}
let quantity = document.querySelector(".c-product-quantity input");
if(!quantity){return;}
let q = parseInt(quantity.value);
if(isNaN(q)){
quantity.value = 1;
return;
}
else if(q > 1){
quantity.value = q-1 > minQuantity ? q-1 : minQuantity;
}
});
}
let quantityPlus = document.querySelector(".c-product-quantityPlus");
if(quantityMinus){
quantityPlus.addEventListener("click",function(){
let maxQuantity = document.querySelector(".c-product-stock");
if(maxQuantity){
maxQuantity = parseInt(maxQuantity.innerHTML.replace(/[^0-9]/g,""));
if(isNaN(maxQuantity)){
maxQuantity = 999;
}
}
else
{
maxQuantity = 999;
}
let quantity = document.querySelector(".c-product-quantity input");
if(!quantity){return;}
let q = parseInt(quantity.value);
if(isNaN(q)){
quantity.value = 1;
return;
}
else{
quantity.value = q+1 < maxQuantity ? q+1 : maxQuantity;
}
});
}
let quantity = document.querySelector(".c-product-quantity input");
if(quantity){
quantity.addEventListener("change",function(){
this.value = this.value
.replace("0","0")
.replace("1","1")
.replace("2","2")
.replace("3","3")
.replace("4","4")
.replace("5","5")
.replace("6","6")
.replace("7","7")
.replace("8","8")
.replace("9","9")
;
this.value = this.value.replace(/[^0-9]/g,"");
if(isNaN(parseFloat(this.value))){
this.value = 1;
return;
}
if(this.value < 1){
this.value = 1;
return;
}
let maxQuantity = document.querySelector(".c-product-stock");
if(maxQuantity){
maxQuantity = parseInt(maxQuantity.innerHTML.replace(/[^0-9]/g,""));
if(isNaN(maxQuantity)){
maxQuantity = 999;
}
}
else
{
maxQuantity = 999;
}
if(this.value > maxQuantity){
this.value = maxQuantity;
}
});
}
});
function productPageHandler(){
CLASSIC.publicCache.productInformationWrapper.style.minHeight = CLASSIC.publicCache.productImageWrapper.clientHeight+"px";
window.requestAnimationFrame(productPageHandler);
}
function optionsModalDataScrollHandler(){
if(!CLASSIC.publicCache.hasOwnProperty("optionsModalData")){return;}
if(!CLASSIC.publicCache.hasOwnProperty("optionsModalDataScrollBar")){return;}
if(!CLASSIC.publicCache.hasOwnProperty("optionsModalDataScrollBarPointer")){return;}
if(CLASSIC.publicCache.optionsModalData.clientHeight >= CLASSIC.publicCache.optionsModalData.scrollHeight){
if(CLASSIC.publicCache.optionsModalDataScrollBar.className.indexOf("active") != -1){
CLASSIC.publicCache.optionsModalDataScrollBar.className =
CLASSIC.publicCache.optionsModalDataScrollBar.className.replace(" active","");
}
}
else
{
if(CLASSIC.publicCache.optionsModalDataScrollBar.className.indexOf("active") == -1){
CLASSIC.publicCache.optionsModalDataScrollBar.className += " active";
}
let pointerSize = CLASSIC.publicCache.optionsModalData.clientHeight / CLASSIC.publicCache.optionsModalData.scrollHeight;
pointerSize *= CLASSIC.publicCache.optionsModalDataScrollBar.clientHeight;
let r = CLASSIC.publicCache.optionsModalData.scrollTop/(CLASSIC.publicCache.optionsModalData.scrollHeight-CLASSIC.publicCache.optionsModalData.clientHeight);
r = (CLASSIC.publicCache.optionsModalDataScrollBar.clientHeight - pointerSize) * r;
CLASSIC.publicCache.optionsModalDataScrollBarPointer.style.top = r.toFixed(5)+"px";
CLASSIC.publicCache.optionsModalDataScrollBarPointer.style.height = pointerSize.toFixed(5)+"px";
}
window.requestAnimationFrame(optionsModalDataScrollHandler);
}
function optionsTableScrollHandler(){
if(!CLASSIC.publicCache.hasOwnProperty("optionsTable")){return;}
if(!CLASSIC.publicCache.hasOwnProperty("optionsTableScrollBar")){return;}
if(!CLASSIC.publicCache.hasOwnProperty("optionsTableScrollBarPointer")){return;}
if(CLASSIC.publicCache.optionsTable.clientWidth >= CLASSIC.publicCache.optionsTable.scrollWidth){
if(CLASSIC.publicCache.optionsTableScrollBar.className.indexOf("active") != -1){
CLASSIC.publicCache.optionsTableScrollBar.className =
CLASSIC.publicCache.optionsTableScrollBar.className.replace(" active","");
}
}
else
{
if(CLASSIC.publicCache.optionsTableScrollBar.className.indexOf("active") == -1){
CLASSIC.publicCache.optionsTableScrollBar.className += " active";
}
let pointerSize = CLASSIC.publicCache.optionsTable.clientWidth / CLASSIC.publicCache.optionsTable.scrollWidth;
pointerSize *= CLASSIC.publicCache.optionsTableScrollBar.clientWidth;
let r = CLASSIC.publicCache.optionsTable.scrollLeft/(CLASSIC.publicCache.optionsTable.scrollWidth-CLASSIC.publicCache.optionsTable.clientWidth);
r = (CLASSIC.publicCache.optionsTableScrollBar.clientWidth - pointerSize) * r;
CLASSIC.publicCache.optionsTableScrollBarPointer.style.left = r.toFixed(5)+"px";
CLASSIC.publicCache.optionsTableScrollBarPointer.style.width = pointerSize.toFixed(5)+"px";
}
window.requestAnimationFrame(optionsTableScrollHandler);
}
function reviewListScrollHandler(){
if(!CLASSIC.publicCache.hasOwnProperty("reviewList")){return;}
if(!CLASSIC.publicCache.hasOwnProperty("reviewListScrollBar")){return;}
if(!CLASSIC.publicCache.hasOwnProperty("reviewListScrollBarPointer")){return;}
if(CLASSIC.publicCache.reviewList.clientHeight >= CLASSIC.publicCache.reviewList.scrollHeight){
if(CLASSIC.publicCache.reviewListScrollBar.className.indexOf("active") != -1){
CLASSIC.publicCache.reviewListScrollBar.className =
CLASSIC.publicCache.reviewListScrollBar.className.replace(" active","");
}
}
else
{
if(CLASSIC.publicCache.reviewListScrollBar.className.indexOf("active") == -1){
CLASSIC.publicCache.reviewListScrollBar.className += " active";
}
let pointerSize = CLASSIC.publicCache.reviewList.clientHeight / CLASSIC.publicCache.reviewList.scrollHeight;
pointerSize *= CLASSIC.publicCache.reviewListScrollBar.clientHeight;
let r = CLASSIC.publicCache.reviewList.scrollTop/(CLASSIC.publicCache.reviewList.scrollHeight-CLASSIC.publicCache.reviewList.clientHeight);
r = (CLASSIC.publicCache.reviewListScrollBar.clientHeight - pointerSize) * r;
CLASSIC.publicCache.reviewListScrollBarPointer.style.top = r.toFixed(5)+"px";
CLASSIC.publicCache.reviewListScrollBarPointer.style.height = pointerSize.toFixed(5)+"px";
}
window.requestAnimationFrame(reviewListScrollHandler);
}
{
let thumbnail = document.querySelectorAll(".c-product-imageThumbnail");
for(let i=0;i
こちらの商品が カートに入りました
MI-A40 防犯カメラ用 RCA端子対応 映像・電源一体型ケーブル(40m)
営業日カレンダー
2025年4月
日 |
月 |
火 |
水 |
木 |
金 |
土 |
|
|
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
|
|
|
2025年5月
日 |
月 |
火 |
水 |
木 |
金 |
土 |
|
|
|
|
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
Copyright © MIMINOHI All Rights Reserved.
Powered by
|
---|