瀏覽代碼

content changes.

master
navaneeth-webtrigon 7 年之前
父節點
當前提交
32f207ba57
共有 9 個文件被更改,包括 66 次插入39 次删除
  1. +2
    -2
      static/css/home.css
  2. 二進制
      static/files/deposits.pdf
  3. 二進制
      static/files/loans.pdf
  4. +5
    -5
      static/js/service.js
  5. +2
    -2
      static/scss/home.scss
  6. +1
    -1
      templates/base.html
  7. +13
    -13
      templates/deposit.html
  8. +26
    -2
      templates/home.html
  9. +17
    -14
      templates/loans.html

+ 2
- 2
static/css/home.css 查看文件

@@ -394,7 +394,7 @@ section .description p {
margin: 0 20px;
padding: 10px 0;
width: 90%;
height: 120px;
height: 140px;
overflow: hidden;
}
#branches .owl-branches .owl-item-branches .description .person-name,
@@ -415,7 +415,7 @@ section .description p {
padding-bottom: 30px;
position: relative;
z-index: 2;
padding-top: 40px;
padding-top: 85px;
}
#branches .branches-carousel-btn i {
padding: 10px;


二進制
static/files/deposits.pdf 查看文件


二進制
static/files/loans.pdf 查看文件


+ 5
- 5
static/js/service.js 查看文件

@@ -1,5 +1,5 @@
var service_tabs = document.querySelectorAll('.service-content .side-content li');
// var scenes = document.querySelectorAll('.scene-container object');
var scenes = document.querySelectorAll('.scene-container object');

for (var i = 0; i < service_tabs.length; i++) {
service_tabs[i].addEventListener('click', change_tabs);
@@ -8,12 +8,12 @@ for (var i = 0; i < service_tabs.length; i++) {
function change_tabs(e) {
for (var i = 0; i < service_tabs.length; i++) {

// scenes[i].classList.remove('active');
scenes[i].classList.remove('active');
service_tabs[i].classList.remove('active');

// if (e.currentTarget.dataset.tab == scenes[i].dataset.sceneTarget) {
// scenes[i].classList.add('active');
// }
if (e.currentTarget.dataset.tab == scenes[i].dataset.sceneTarget) {
scenes[i].classList.add('active');
}
}

e.currentTarget.classList.add('active');

+ 2
- 2
static/scss/home.scss 查看文件

@@ -412,7 +412,7 @@ section {
margin: 0 20px;
padding: 10px 0;
width: 90%;
height: 120px;
height: 140px;
overflow: hidden;

.person-name,
@@ -440,7 +440,7 @@ section {
padding-bottom: 30px;
position: relative;
z-index: 2;
padding-top: 40px;
padding-top: 85px;

i {
padding: 10px;


+ 1
- 1
templates/base.html 查看文件

@@ -39,7 +39,7 @@
{% block content %}
{% endblock content %}
<footer id="footer">
<small>copyright &copy; 2018 <mark>Webtrigon</mark></small>
<small>copyright &copy; 2018 <mark>Bharath Co-Operative Bank</mark></small>
<small>Digitized By <mark>Webtrigon Mini</mark></small>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>


+ 13
- 13
templates/deposit.html 查看文件

@@ -18,24 +18,24 @@
<li data-tab = "loan">Nomination Facility</li>
</ul>
<div class="scene-container">
<!-- <object data="{% static 'files/sample-1.pdf' %}" type="application/pdf" style="width:100%; height:100%;" class="active" data-scene-target = "sales">
<embed src="{% static 'files/sample-1.pdf' %}" type="application/pdf" />
<object data="{% static 'files/deposits.pdf' %}" type="application/pdf" style="width:100%; height:100%;" class="active" data-scene-target = "sales">
<embed src="{% static 'files/deposits.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-2.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "financial">
<embed src="{% static 'files/sample-2.pdf' %}" type="application/pdf" />
<object data="{% static 'files/deposits.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "financial">
<embed src="{% static 'files/deposits.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-1.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "investment">
<embed src="{% static 'files/sample-1.pdf' %}" type="application/pdf" />
<object data="{% static 'files/deposits.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "investment">
<embed src="{% static 'files/deposits.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-2.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "tax">
<embed src="{% static 'files/sample-2.pdf' %}" type="application/pdf" />
<object data="{% static 'files/deposits.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "tax">
<embed src="{% static 'files/deposits.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-1.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "loan">
<embed src="{% static 'files/sample-1.pdf' %}" type="application/pdf" />
<object data="{% static 'files/deposits.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "loan">
<embed src="{% static 'files/deposits.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/deposits.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "consultant">
<embed src="{% static 'files/deposits.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-2.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "consultant">
<embed src="{% static 'files/sample-2.pdf' %}" type="application/pdf" />
</object> -->
</div>
</section>
{% endblock content %}


+ 26
- 2
templates/home.html 查看文件

@@ -99,8 +99,8 @@
<li>
<img src="{% static 'images/time.svg' %}" alt="">
<div class="contact-content">
<span>Opening Hours</span>
<span>Mon-Sat: 10:00 A.M - 2:00 P.M, <br> 3:30 P.M - 6:00 P.M</span>
<span>Opening Hours (Head Office)</span>
<span>Mon-Sat: 9:30 A.M - 12:30 P.M, <br> 4:30 P.M - 7:00 P.M</span>
</div>
</li>
</ul>
@@ -197,6 +197,10 @@
</figure>
<div class="description">
<div class="person-name">JAYANAGAR</div>
<div class="person-info">
9.30 a.m - 12.30 p.m,
4.30 pm - 7.00 p.m
</div>
<div class="person-info">H.O: #30, 15th cross, 3rd block, Bangalore - 011</div>
<div class="person-info">PH : 2663 2783, 2663 3566</div>
</div>
@@ -207,6 +211,10 @@
</figure>
<div class="description">
<div class="person-name">mathikere</div>
<div class="person-info">
9.30 a.m - 12.30 p.m,
4.00 pm - 6.30 p.m
</div>
<div class="person-info">No. 1047, Triveni road, Bangalore - 054</div>
<div class="person-info">PH : 2337 4010</div>
</div>
@@ -217,6 +225,10 @@
</figure>
<div class="description">
<div class="person-name">vijayanagar</div>
<div class="person-info">
9.30 a.m - 12.30 p.m,
4.00 pm - 6.30 p.m
</div>
<div class="person-info">No. 2941/E, Service road, OPP. Maruthi Mandir, Vijayanagar 2nd stage, Bangalore - 040</div>
<div class="person-info">PH : 2340 3063</div>
</div>
@@ -227,6 +239,10 @@
</figure>
<div class="description">
<div class="person-name">kengeri</div>
<div class="person-info">
10.00 a.m - 1.30 p.m,
2.00 pm - 4.00 p.m
</div>
<div class="person-info">No. 40, SLN Complex Mysore road, Kengeri town, Bangalore - 060</div>
<div class="person-info">PH : 2848 2256</div>
</div>
@@ -237,6 +253,10 @@
</figure>
<div class="description">
<div class="person-name">yelanka</div>
<div class="person-info">
9.30 a.m - 12.30 p.m,
4.00 pm - 6.30 p.m
</div>
<div class="person-info">No. 796, 8th Main Road, 'A' sector, Opp. N.E.S Office, Yelahanka New Town, Bangalore - 064</div>
<div class="person-info">PH : 2856 2074</div>
</div>
@@ -247,6 +267,10 @@
</figure>
<div class="description">
<div class="person-name">beguru</div>
<div class="person-info">
10.00 a.m - 1.30 p.m.
2.00 pm - 5.00 p.m
</div>
<div class="person-info">16th Main, 4th Block, Bangalore - 011</div>
<div class="person-info">PH :</div>
</div>


+ 17
- 14
templates/loans.html 查看文件

@@ -11,7 +11,7 @@
</section>
<section class="service-content">
<ul class="side-content">\
<li class="active">Home Loan</li>
<li data-tab = "home" class="active">Home Loan</li>
<li data-tab = "sales">Mortage Loan</li>
<li data-tab = "financial">Consumption Loan</li>
<li data-tab = "investment">Jewellery Loan</li>
@@ -20,24 +20,27 @@
<li data-tab = "consultant">Vehicle Loan</li>
</ul>
<div class="scene-container">
<!-- <object data="{% static 'files/sample-1.pdf' %}" type="application/pdf" style="width:100%; height:100%;" class="active" data-scene-target = "sales">
<embed src="{% static 'files/sample-1.pdf' %}" type="application/pdf" />
<object data="{% static 'files/loans.pdf' %}" type="application/pdf" style="width:100%; height:100%;" class="active" data-scene-target = "home">
<embed src="{% static 'files/loans.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-2.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "financial">
<embed src="{% static 'files/sample-2.pdf' %}" type="application/pdf" />
<object data="{% static 'files/loans.pdf' %}" type="application/pdf" style="width:100%; height:100%;" class="active" data-scene-target = "sales">
<embed src="{% static 'files/loans.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-1.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "investment">
<embed src="{% static 'files/sample-1.pdf' %}" type="application/pdf" />
<object data="{% static 'files/loans.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "financial">
<embed src="{% static 'files/loans.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-2.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "tax">
<embed src="{% static 'files/sample-2.pdf' %}" type="application/pdf" />
<object data="{% static 'files/loans.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "investment">
<embed src="{% static 'files/loans.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-1.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "loan">
<embed src="{% static 'files/sample-1.pdf' %}" type="application/pdf" />
<object data="{% static 'files/loans.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "tax">
<embed src="{% static 'files/loans.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/loans.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "loan">
<embed src="{% static 'files/loans.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/loans.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "consultant">
<embed src="{% static 'files/loans.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-2.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "consultant">
<embed src="{% static 'files/sample-2.pdf' %}" type="application/pdf" />
</object> -->
</div>
</section>
{% endblock content %}


Loading…
取消
儲存