Warning: Trying to access array offset on value of type bool in /home/yotigory/codingmania.net/public_html/wp-content/plugins/search-everything/config.php on line 29

Warning: Cannot modify header information - headers already sent by (output started at /home/yotigory/codingmania.net/public_html/wp-content/plugins/search-everything/config.php:29) in /home/yotigory/codingmania.net/public_html/wp-includes/feed-rss2.php on line 8
レスポンシブ アーカイブ - CodingMania https://codingmania.net/tag/レスポンシブ コーディングマニアは、コーダーやWEBデザイナーが、効率よくコーディング作業が出来ることを目指したサイトです。 Sun, 10 Oct 2021 07:27:33 +0000 ja hourly 1 https://wordpress.org/?v=5.8.10 WordPress のYouTube埋め込みの iframe をレスポンシブ対応する https://codingmania.net/jquery/1811.html https://codingmania.net/jquery/1811.html#respond Sun, 10 Oct 2021 06:49:40 +0000 https://codingmania.net/?p=1811 JSを読み込みます jQuery[js_youtube.js] CSS

投稿 WordPress のYouTube埋め込みの iframe をレスポンシブ対応するCodingMania に最初に表示されました。

]]>
JSを読み込みます
if ( is_single() ) {
wp_enqueue_script( 'js_youtube', get_template_directory_uri() . '/js/js_youtube.js',  array('jquery'), false, true );
}

jQuery[js_youtube.js]

jQuery(document).ready(function () {
	$(function () {
		$('iframe').each(function () {
			let frame = $(this);
			let div = document.createElement('div');
			div.className = 'youtube';
			if ((frame.is('[src*="youtube"]'))) {
				$(this).wrap(div);
			}
		});
	});
});

CSS

/* youtube
-----------------------------------------*/
.youtube {
position: relative;
width: 100%;
padding-top: 56.25%;
}

.youtube iframe{
position: absolute;
top: 0;
right: 0;
width: 100% !important;
height: 100% !important;
}

投稿 WordPress のYouTube埋め込みの iframe をレスポンシブ対応するCodingMania に最初に表示されました。

]]>
https://codingmania.net/jquery/1811.html/feed 0
フォームにある現在地を示すステップナビゲーション https://codingmania.net/list/1588.html https://codingmania.net/list/1588.html#respond Mon, 05 Mar 2018 04:47:07 +0000 https://codingmania.net/?p=1588 HTMl <div class="Stepnav"> <ol> <li class="current">1<span>.製品情報入力 […]

投稿 フォームにある現在地を示すステップナビゲーションCodingMania に最初に表示されました。

]]>
HTMl
<div class="Stepnav">
  <ol>
    <li class="current">1<span>.製品情報入力</span></li>
    <li>2<span>.問合せ情報入力</span></li>
    <li>3<span>.お客様情報入力</span></li>
    <li>4<span>.確認</span></li>
    <li>5<span>.送信完了</span></li>
  </ol>
<!-- /.Stepnav --></div>

CSS

/* Stepnav
-----------------------------------------*/

.Stepnav ol {
  margin-top: 40px;
  display: table;
  table-layout: fixed;
  width: 100%;
  box-sizing: border-box;
  height: 48px;
  border-left: solid 1px #cccccc;
  border-right: solid 1px #cccccc;
}

.Stepnav ol li {
  position: relative;
  display: table-cell;
  box-sizing: border-box;
  padding-left: 25px;
  text-align: center;
  vertical-align: middle;
  color: #2196f3;
  font-size: 14px;
  background-color: #f9f9f9;
  font-weight: bold;
  border-top: solid 1px #cccccc;
  border-bottom: solid 1px #cccccc;
}

.Stepnav ol li:first-child {
  padding-left: 0;
}

@media screen and (max-width: 960px) {
  .Stepnav ol li {
    font-size: 12px;
  }
}

.Stepnav ol li.current {
  background-color: #2196f3;
  color: #FFF;
}

@media screen and (max-width: 960px) {
  .Stepnav ol li span {
    display: none;
  }
}

.Stepnav ol li:before {
  content: "";
  position: absolute;
  top: -1px;
  right: -25px;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 24px solid #cccccc;
  z-index: 99;
}

.Stepnav ol li:nth-child(5):before {
  display: none;
}

.Stepnav ol li:after {
  content: "";
  position: absolute;
  top: -1px;
  right: -24px;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 24px solid #f9f9f9;
  z-index: 99;
}

.Stepnav ol li:last-child:after {
  display: none;
}



.Stepnav ol li.current {
  border-top: solid 1px #2196f3;
  border-bottom: solid 1px #2196f3;
}

.Stepnav ol li.current:after {
  border-left: 24px solid #2196f3;
}

投稿 フォームにある現在地を示すステップナビゲーションCodingMania に最初に表示されました。

]]>
https://codingmania.net/list/1588.html/feed 0
横からスライドインするレスポンシブ対応メニュー https://codingmania.net/jquery/1571.html https://codingmania.net/jquery/1571.html#respond Wed, 06 Sep 2017 08:43:52 +0000 https://codingmania.net/?p=1571 JSを読み込みます <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1 […]

投稿 横からスライドインするレスポンシブ対応メニューCodingMania に最初に表示されました。

]]>
JSを読み込みます
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="https://codingmania.net/demo/form/0014/js/main.js"></script>

[main.js]JavaScript

$(function(){

//メニュー
//SET
if($(".Header__btn").css("display") == "block") {
    windowWidth = $(window).width();
    $(".Globalnav").css({"margin-left":windowWidth, "width":windowWidth,"display":"block"});
}
//risize
var setwidth = $(window).width();
var timer = false;
$(window).resize(function() {
    if (timer !== false) {
        clearTimeout(timer);
    }
    timer = setTimeout(function() {
    var ww = $(window).width();
    windowWidth = $(window).width();
    if(windowWidth == setwidth){
    }else if(windowWidth<640){
    $(".Header__btn p").addClass("close").removeClass("open");
    $(".Header__btn p img").attr("src","common/img/icon_menu.png");
    $(".Globalnav").css({"margin-left":windowWidth, "width":windowWidth,"display":"block"});
    }else{
    $(".Globalnav").css({"margin":"0 auto", "width":950});
    };
    }, 50);
});

//orientationchange
$(function(){
var timer = false;
    //$(window).on("orientationchange", function() {
    $(window).on("orientationchange", function() {
    if(timer !== false){
        clearTimeout(timer);
    }
    timer = setTimeout(function() {
    //window.onorientationchange = function(){
    windowWidth = $(window).width();
    //alert(windowWidth);
    if(windowWidth<640){
    $(".Header__btn p").addClass("close").removeClass("open");
    $(".Header__btn p img").attr("src","common/img/icon_menu.png");
    $(".Globalnav").css({"margin-left":windowWidth, "width":windowWidth,"display":"block"});
    }else{
    $(".Globalnav").css({"margin":"0 auto", "width":950});
    }
    }, 1);
    });
});

//click
  $(".Header__btn p").click(function() {
if($(this).hasClass("open")) {
    $(this).addClass("close").removeClass("open");
    //var windowWidth = $(window).width();
    $(".Header__btn p img").attr("src","common/img/icon_menu.png");
    $(".Globalnav").animate({"marginLeft":windowWidth+"px"},500);
    //alert(windowWidth);
} else {
    $(this).addClass("open").removeClass("close");
    $(".Header__btn p img").attr("src","common/img/icon_menu-close.png");
    $(".Globalnav").animate({"marginLeft":"0px"},500);
}

});

});

HTMl

<header class="Header" role="banner">
<div class="Header__btn">
<p><a href="javascript:void(0)"><span>メニューを開く</span></a></p>
<!-- /.Header__btn --></div>
<nav class="Globalnav" role="navigation" aria-label="メインメニュー">
<ul>
<li class="current"><a href="#">TOPページ</a></li>
<li><a href="#">メニューその1</a></li>
<li><a href="#">メニューその2</a></li>
<li><a href="#">メニューその3</a></li>
<li><a href="#">メニューその4</a></li>
<li><a href="#">メニューその5</a></li>
</ul>
<!-- /.Globalnav --></nav>
<!-- /.Header --></header>

CSS

/* Header
-----------------------------------------*/
@media screen and (max-width: 640px) {
.Header{
  position: relative;
  height: 50px;
}
}
.Header__btn{
  display: none;
}
@media screen and (max-width: 640px) {
.Header__btn{
  position: absolute;
  top:0px;
  right: 0px;
  display: block;
  background-color: #489fdf;
}
.Header__btn p a{
  display: block;
    width: 50px;
    height: 50px;
}
  .Header__btn p a:after {
    position: absolute;
    display: block;
    content: " \f0c9";
    font-family: FontAwesome;
    width: 50px;
    height: 50px;
    top: 14px;
    left:0;
    right: 0;
    font-size: 22px;
    color: #FFF;
    text-align: center;
  }
  .Header__btn p.open a:after {
    content: " \f00d";
  }
.Header__btn span{
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

}
/* Globalnav
-----------------------------------------*/
@media screen and (max-width: 640px) {
  body {
    overflow: hidden;
  }
}
.Globalnav {
  margin: 0 auto;
  width: 950px;
}

@media screen and (max-width: 640px) {
  .Globalnav {
    width: auto;
  }
}

@media screen and (max-width: 640px) {
  .Globalnav {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    margin-left: 320px;
    width: 320px;
    z-index: 9999;
    background-color: #489fdf;
  }
}

.Globalnav ul {
  display: table;
  width: 100%;
}

@media screen and (max-width: 640px) {
  .Globalnav ul {
    display:block;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 10px;
  }
}

.Globalnav ul li {
  display: table-cell;
}
@media screen and (max-width: 640px) {
  .Globalnav ul li {
   display: block;
    margin: 0;
    border-bottom: solid 1px #FFF;
  }
  .Globalnav ul li:last-child{
    border-bottom: none;
  }
}

.Globalnav ul li a {
  display: block;
  text-align: center;
  padding: 20px 0;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-bottom: solid 3px #FFF;
}

@media screen and (max-width: 640px) {
  .Globalnav ul li a {
    position: relative;
    padding: 15px 0;
    font-size: 14px;
    border: none;
    color: #FFF;
    text-align: left;
  }
}

@media screen and (max-width: 640px) {
  .Globalnav ul li a:after {
    position: absolute;
    content: " \f105";
    font-family: FontAwesome;
    width: 20px;
    height: 7px;
    top: 50%;
    margin-top: -10px;
    right: 0;
  }
}

.Globalnav ul li a:hover, .Globalnav ul li a:focus, .Globalnav ul li.current a {
  border-bottom: solid 3px #489fdf;
  color: #489fdf;
}

@media screen and (max-width: 640px) {
  .Globalnav ul li a:hover, .Globalnav ul li a:focus, .Globalnav ul li.current a {
    border-bottom: none;
    color: #FFF;
  }
}

投稿 横からスライドインするレスポンシブ対応メニューCodingMania に最初に表示されました。

]]>
https://codingmania.net/jquery/1571.html/feed 0