This commit is contained in:
2024-10-29 14:04:59 +08:00
commit 48bf3e6f33
2839 changed files with 762707 additions and 0 deletions

View File

@@ -0,0 +1,124 @@
<div class="footer">
<div class="logo-white"><img src="__PUBLIC__/m_weben/images/logo-white.png" ></div>
<!--div class="logo-text">Sign up for news, updates & 10% off your first order.</div>
<div class="foot-in"><input type="text" name="E-mail" placeholder="E-mail" class="logo-input"><div class="logo-arr"><img src="__PUBLIC__/m_weben/images/arriow-r.png" ></div-->
<div class="foot-cate">
<ul class="clearfix">
<?php if ($productCategory): ?>
<li>
<h3>Product</h3>
<?php foreach ($productCategory as $k => $pc): if ($k > 8) break; ?>
<p><a href="__ORICOROOT__/product/catelists/id/<?php echo $pc['id']; ?>"><?php echo $pc['name']; ?></a></p>
<?php endforeach; ?>
</li>
<?php endif; ?>
<?php if ($nav_footer): ?>
<?php foreach ($nav_footer as $kf => $footer): ?>
<li>
<h3><?php echo $footer['name']; ?></h3>
<?php if ($footer['items']): ?>
<?php foreach ($footer['items'] as $ki => $itm):
if(strpos($itm['url'], 'http://') !== false || strpos($itm['url'], 'https://') !== false) {
$link = $itm['url'];
}
else{
$link = '__ORICOROOT__/'.$itm['url'];
}
if($ki<3):
?>
<p>
<a href="<?php echo $link; ?>" <?php if($itm['is_new_window_open']){echo "target='_blank'";} ?> data='aa' class="inline-block link-faded break-all"><?php echo $itm['name']; ?></a>
</p>
<?php endif; ?>
<?php endforeach; ?>
<?php endif; ?>
</li>
<?php endforeach; ?>
<?php endif; ?>
<li>
<h3>Contact</h3>
<p>Technical Support<?php echo $website_email;?></p>
<p>Businessoversea-bu@orico.com.cn</p>
<p>Monday-Friday,9a.m.-6p.m.GMT+8</p>
</li>
</ul>
</div>
<div class="foot-wei">
<div class="m_footer text_white m-in-top clearfix">
<div class="left">
<a href="https://www.facebook.com/ORICOTECHNOLOGY/" target="_blank" > <img src="__PUBLIC__/m_weben/images/Facebook.png" ></a>
<a href="https://www.instagram.com/orico_technology/" target="_blank" ><img src="__PUBLIC__/m_weben/images/ins.png" ></a>
<a href="https://www.youtube.com/@OricoTechs" target="_blank" ><img src="__PUBLIC__/m_weben/images/YouTube.png" ></a>
</div>
<div class="right mask-up img-responsive foot-con">
<img class="right-country" src="__PUBLIC__/m_weben/images/Amric-icon.png" >
<span >United States</span>
<img src="__PUBLIC__/m_weben/images/downicon.png" >
</div>
</div>
<div class="mask"></div>
<div class="action-sheet">
<div class="menu-title">
<div class="menu-name">SELECT A REGION</div>
<div class="close-icon">
<img src="__PUBLIC__/m_weben/images/close.png" >
</div>
</div>
<ul>
<li num="1"><a href="https://www.orico.com.cn/" target="_blank"> <img src="__PUBLIC__/m_weben/images/countries/china-img.png" >China- 中文简体</a></li>
<li num="2"><a href="https://www.orico.cc/us" target="_blank"><img src="__PUBLIC__/m_weben/images/countries/US.png" >USA - English</a></li>
<li num="3"><a href="https://www.oricobr.com" target="_blank"><img src="__PUBLIC__/m_weben/images/countries/BR.png" >Brazil - portugues</a></li>
<li num="4"><a href="https://www.ORICOPERU.com" target="_blank"><img src="__PUBLIC__/m_weben/images/countries/PE.png" >Peru - espafol</a></li>
<li num="5"><a href="https://www.orico.cc/th" target="_blank"><img src="__PUBLIC__/m_weben/images/countries/TH.png" >Thailand - ไทย</a></li>
<li num="6"><a href="https://www.orico.cc/id" target="_blank"><img src="__PUBLIC__/m_weben/images/countries/ID.png" >Indonesia - bahasa Indonesia</a></li>
<li num="7"><a href="https://www.orico.cc/vn" target="_blank"><img src="__PUBLIC__/m_weben/images/countries/VN.png" >Vietnam - Tiếng Việt</a></li>
<li num="8"><a href="https://www.orico.shop/" target="_blank"><img src="__PUBLIC__/m_weben/images/countries/NL.png" >Netherlands - English</a></li>
<li num="9"><a href="http://www.oricoturkiye.com/" target="_blank"><img src="__PUBLIC__/m_weben/images/countries/TR.png" >Turkiye - Türkçe</a></li>
<li num="10"><a href="https://www.oricoiran.com" target="_blank"><img src="__PUBLIC__/m_weben/images/countries/IR.png" >Iran - فارسی</a></li>
<li num="10"><a href="https://www.orico.com.au" target="_blank"><img src="__PUBLIC__/m_weben/images/countries/AU.png" >Australia - English</a></li>
<li num="10"><a href="https://orico-russia.ru" target="_blank"><img src="__PUBLIC__/m_weben/images/countries/RU.png" >Russia - Россия</a></li>
</ul>
</div>
</div>
<div class="copy-text">@2023. Orico. Powered by Shopify</div>
</div>
<script>
$(function () {
//点击菜单
$('.mask-up').click(function () {
$(this).addClass('menu-active')
$('.action-sheet').show()
$('.mask').show()
$('html').addClass('scroll-mask')
})
//关闭弹窗
$('.close-icon').click(function () {
$('.action-sheet').hide()
$('.mask').hide()
$('html').removeClass('scroll-mask')
})
//点击每一项的事件
$('.action-sheet ul li').click(function () {
$('.action-sheet').hide()
$('.mask').hide()
$('html').removeClass('scroll-mask')
let num = $(this).attr('num')
})
$('.mask')
.not('.action-sheet')
.click(function () {
$('.action-sheet').hide()
$('.mask').hide()
$('html').removeClass('scroll-mask')
})
})
</script>