diff --git a/arrangements-delivery_arrangements3.html b/arrangements-delivery_arrangements3.html index 3c379cc..cc43aba 100644 --- a/arrangements-delivery_arrangements3.html +++ b/arrangements-delivery_arrangements3.html @@ -116,19 +116,19 @@
-
+
- - - - - + + + + -
@@ -401,18 +400,16 @@
- + +
-
+
@@ -450,14 +447,8 @@ }); } - $(document).ready(function(){ - - $("select").click(function(){ - - $("services").hide(); - }); - + diff --git a/css/global.style.css b/css/global.style.css index a599e12..714e389 100644 --- a/css/global.style.css +++ b/css/global.style.css @@ -2677,13 +2677,12 @@ cont.menu ul.main-menu>li li a{ /*end of part 28----------------------------------------------------*/ /*------------------------------------------------------------------- -[29. Table and Collapsible] +[29. split form -------------------------------------------------------------------*/ .form-first-name, .form-last-name { width: 46%; border: none; - back } .form-last-name { @@ -2713,9 +2712,36 @@ input[type=text]:disabled { float:left; } - /*end of part 29----------------------------------------------------*/ +/*------------------------------------------------------------------- +[30. pagination +-------------------------------------------------------------------*/ +.pagination { + display: inline-block; +} + +.pagination a { + color: black; + float: left; + padding: 8px 16px; + text-decoration: none; + transition: background-color .3s; + border: 1px solid #ddd; + margin: 0 4px; + font-size: 10px; +} + +.pagination a.active { + background-color: #4CAF50; + color: white; + border: 1px solid #4CAF50; +} + +.pagination a:hover:not(.active) {background-color: #ddd;} + +/*end of part 30----------------------------------------------------*/ + /*Other Styles and helpers------------------------------------------*/ .block { display: block; @@ -2742,10 +2768,6 @@ h1 .button { color: #000; } -.hidden { - display: none; -} - diff --git a/js/global.script.js b/js/global.script.js index 7840274..87af6cd 100644 --- a/js/global.script.js +++ b/js/global.script.js @@ -400,4 +400,45 @@ function fasterPreviewCompany(uploader) { $("#CompanyUpload").change(function (c) { fasterPreviewCompany(this); +}); + +/* ========================================= +[dropdownView] Start Here +==========================================*/ + +$(document).ready(function(){ + $('#typeDelivery').on('change', function() { + if ( this.value == '0') + { + $("#services-a").show(); + } + else + { + $("#services-a").hide(); + } + if ( this.value == '1') + { + $("#services-b").show(); + } + else + { + $("#services-b").hide(); + } + if ( this.value == '2') + { + $("#services-c").show(); + } + else + { + $("#services-c").hide(); + } + if ( this.value == '3') + { + $("#services-d").show(); + } + else + { + $("#services-d").hide(); + } + }); }); \ No newline at end of file