Skip to content

Instantly share code, notes, and snippets.

@torkia
torkia / style.css
Created December 11, 2022 19:11
portfolio_study_wp
@charset "utf-8";
/*
Theme Name:Portfolio Siteテーマ
*/
@torkia
torkia / functions.php
Created December 11, 2022 19:09
portfolio_study_wp
<?php
// imgタグにwidth,height属性を追加しない設定
add_filter('wp_img_tag_add_width_and_height_attr','__return_false');
@torkia
torkia / index.php
Created December 11, 2022 19:07
portfolio_study_wp
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio Site</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hamburgers/1.2.1/hamburgers.css">
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/style.css">
</head>
<body>
@torkia
torkia / script.js
Last active November 29, 2022 20:23
smooth scroll original02
//スムーススクロール(同ページ内)
// ページ内の # で始まるアンカーをクリックした場合の処理
$('a[href^="#"]').click(function(){
// ヘッダーを固定しているので、その分をマイナスする
var headerHeight = $('header').outerHeight();
// スクロールの速度
var speed = 600; // ミリ秒
@torkia
torkia / style.css
Last active November 29, 2022 20:15
smooth scroll original02
@charset "utf-8";
*{
padding: 0;
margin: 0;
}
ul{
list-style: none;
}
a{
text-decoration: none;
@torkia
torkia / other.html
Last active November 29, 2022 20:30
smooth scroll original02
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="description" content="ページ外からのページ内リンク スムーススクロール">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ページ外からのページ内リンク</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body class="other">
@torkia
torkia / index.html
Last active November 29, 2022 20:29
smooth scroll original02
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="description" content="ページ外からのページ内リンク スムーススクロール">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ページ外からのページ内リンク</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>