תבנית:לשוניות: הבדלים בין גרסאות בדף

הוסרו 75 בתים ,  23 באוגוסט 2020
מ
החלפת טקסט – " " ב־" "
אין תקציר עריכה
מ (החלפת טקסט – " " ב־" ")
תגיות: עריכה ממכשיר נייד עריכה דרך האתר הנייד
שורה 1: שורה 1:
<includeonly><html><div class="tab">
<includeonly><html><div class="tab">
  <button id="LondonButton" class="tablinks" onclick="openCity(event, 'London')">{{{שם1}}}</button>
<button id="LondonButton" class="tablinks" onclick="openCity(event, 'London')">{{{שם1}}}</button>
  <button id="ParisButton" class="tablinks" onclick="openCity(event, 'Paris')">{{{שם2}}}</button>
<button id="ParisButton" class="tablinks" onclick="openCity(event, 'Paris')">{{{שם2}}}</button>
  <button id="TokyoButton" class="tablinks" onclick="openCity(event, 'Tokyo')">{{{שם3}}}</button>
<button id="TokyoButton" class="tablinks" onclick="openCity(event, 'Tokyo')">{{{שם3}}}</button>
</div>
</div>
</html>
</html>
<div id="London" class="tabcontent">
<div id="London" class="tabcontent">
  <h3 id="LondonTabHeadText" style="display:none">{{{שם1}}}</h3>
<h3 id="LondonTabHeadText" style="display:none">{{{שם1}}}</h3>
  <p>{{{תוכן1}}}</p>
<p>{{{תוכן1}}}</p>
</div>
</div>


<div id="Paris" class="tabcontent">
<div id="Paris" class="tabcontent">
  <h3 id="ParisTabHeadText" style="display:none">{{{שם2}}}</h3>
<h3 id="ParisTabHeadText" style="display:none">{{{שם2}}}</h3>
  <p>{{{תוכן2}}}</p>
<p>{{{תוכן2}}}</p>
</div>
</div>


<div id="Tokyo" class="tabcontent">
<div id="Tokyo" class="tabcontent">
  <h3 id="TokyoTabHeadText" style="display:none">{{{שם3}}}</h3>
<h3 id="TokyoTabHeadText" style="display:none">{{{שם3}}}</h3>
  <p>{{{תוכן3}}}</p>
<p>{{{תוכן3}}}</p>
</div>
</div>
<html>
<html>
שורה 23: שורה 23:
/* Style the tab */
/* Style the tab */
div.tab {
div.tab {
    overflow: hidden;
  overflow: hidden;
    border: 1px solid #ccc;
  border: 1px solid #ccc;
    background-color: #f1f1f1;
  background-color: #f1f1f1;
}
}


/* Style the buttons inside the tab */
/* Style the buttons inside the tab */
div.tab button {
div.tab button {
    background-color: inherit;
  background-color: inherit;
    float: right;
  float: right;
    border: none;
  border: none;
    outline: none;
  outline: none;
    cursor: pointer;
  cursor: pointer;
    padding: 14px 16px;
  padding: 14px 16px;
    transition: 0.3s;
  transition: 0.3s;
}
}


/* Change background color of buttons on hover */
/* Change background color of buttons on hover */
div.tab button:hover {
div.tab button:hover {
    background-color: #ddd;
  background-color: #ddd;
}
}


/* Create an active/current tablink class */
/* Create an active/current tablink class */
div.tab button.active {
div.tab button.active {
    background-color: #ccc;
  background-color: #ccc;
}
}


/* Style the tab content */
/* Style the tab content */
.tabcontent {
.tabcontent {
    display: none;
  display: none;
    padding: 6px 12px;
  padding: 6px 12px;
    border: 1px solid #ccc;
  border: 1px solid #ccc;
    border-top: none;
  border-top: none;
}
}
</style>
</style>
שורה 63: שורה 63:


function openCity(evt, cityName) {
function openCity(evt, cityName) {
    // Declare all variables
  // Declare all variables
    var i, tabcontent, tablinks;
  var i, tabcontent, tablinks;


    // Get all elements with class="tabcontent" and hide them
  // Get all elements with class="tabcontent" and hide them
    tabcontent = document.getElementsByClassName("tabcontent");
  tabcontent = document.getElementsByClassName("tabcontent");
    for (i = 0; i < tabcontent.length; i++) {
  for (i = 0; i < tabcontent.length; i++) {
        tabcontent[i].style.display = "none";
    tabcontent[i].style.display = "none";
    }
  }


    // Get all elements with class="tablinks" and remove the class "active"
  // Get all elements with class="tablinks" and remove the class "active"
    tablinks = document.getElementsByClassName("tablinks");
  tablinks = document.getElementsByClassName("tablinks");
    for (i = 0; i < tablinks.length; i++) {
  for (i = 0; i < tablinks.length; i++) {
        tablinks[i].className = tablinks[i].className.replace(" active", "");
    tablinks[i].className = tablinks[i].className.replace(" active", "");
    }
  }


    // Show the current tab, and add an "active" class to the button that opened the tab
  // Show the current tab, and add an "active" class to the button that opened the tab
    document.getElementById(cityName).style.display = "block";
  document.getElementById(cityName).style.display = "block";
    evt.currentTarget.className += " active";
  evt.currentTarget.className += " active";
}
}
</script>
</script>