ในที่เกิดขึ้นจริงเดิมSass (ไม่ SCSS) คุณสามารถใช้ด้านล่าง mixins font-size
การตั้งค่าโดยอัตโนมัติวรรคและหัวทั้งหมด
ฉันชอบเพราะมันกะทัดรัดกว่ามาก และพิมพ์ได้เร็วขึ้น นอกจากนั้นมันมีฟังก์ชั่นเดียวกัน อย่างไรก็ตามหากคุณยังต้องการติดกับไวยากรณ์ใหม่ - scss คุณสามารถแปลงเนื้อหา Sass ของฉันเป็น scss ได้ที่นี่:
[แปลง SASS เป็น SCSS ที่นี่]
ด้านล่างฉันให้สี่มิกซ์ Sass คุณจะต้องปรับแต่งการตั้งค่าตามความต้องการของคุณ
=font-h1p-style-generator-manual() // You don’t need to use this one. Those are only styles to make it pretty.
=media-query-base-font-size-change-generator-manual() // This mixin sets the base body size that will be used by the h1-h6 tags to recalculate their size in a media query.
=h1p-font-size-generator-auto($h1-fs: 3em, $h1-step-down: 0.3, $body-min-font-size: 1.2em, $p-same-as-hx: 6) // Here you will set the size of h1 and size jumps between h tags
=config-and-run-font-generator() // This one only calls the other ones
หลังจากเสร็จสิ้นการเล่นกับการตั้งค่าเพียงโทรหนึ่ง mixin - ซึ่งเป็น: + การตั้งค่าและเรียกใช้ตัวอักษรกำเนิด () ดูรหัสด้านล่างและความคิดเห็นสำหรับข้อมูลเพิ่มเติม
ฉันเดาว่าคุณสามารถทำได้โดยอัตโนมัติสำหรับการสืบค้นสื่อเช่นเดียวกับที่ทำกับแท็กส่วนหัว แต่เราทุกคนใช้การสืบค้นสื่อที่แตกต่างกันดังนั้นจึงไม่เหมาะสำหรับทุกคน ฉันใช้วิธีการออกแบบครั้งแรกผ่านมือถือ รู้สึกอิสระที่จะคัดลอกและใช้รหัสนี้
คัดลอกและวางผสมเหล่านี้ไปยังไฟล์ของคุณ:
=font-h1p-style-generator-manual()
body
font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif // google fonts
font-size: 100%
line-height: 1.3em
%headers
line-height: 1em
font-weight: 700
p
line-height: 1.3em
font-weight: 300
@for $i from 1 through 6
h#{$i}
@extend %headers
=media-query-base-font-size-change-generator-manual()
body
font-size: 1.2em
@media screen and (min-width: 680px)
body
font-size: 1.4em
@media screen and (min-width: 1224px)
body
font-size: 1.6em
@media screen and (min-width: 1400px)
body
font-size: 1.8em
=h1p-font-size-generator-auto($h1-fs: 3em, $h1-step-down: 0.3, $body-min-font-size: 1.2em, $p-same-as-hx: 6)
$h1-fs: $h1-fs // Set first header element to this size
$h1-step-down: $h1-step-down // Decrement each time by 0.3
$p-same-as-hx: $p-same-as-hx // Set p font-sieze same as h(6)
$h1-fs: $h1-fs + $h1-step-down // Looping correction
@for $i from 1 through 6
h#{$i}
font-size: $h1-fs - ($h1-step-down * $i)
@if $i == $p-same-as-hx
p
font-size: $h1-fs - ($h1-step-down * $i)
// RUN ONLY THIS MIXIN. IT WILL TRIGGER THE REST
=config-and-run-font-generator()
+font-h1p-style-generator-manual() // Just a place holder for our font style
+media-query-base-font-size-change-generator-manual() // Just a placeholder for our media query font size
+h1p-font-size-generator-auto($h1-fs: 2em, $h1-step-down: 0.2, $p-same-as-hx: 5) // Set all parameters here
กำหนดค่าการผสมทั้งหมดตามความต้องการของคุณ - เล่นกับมัน! :) และจากนั้นโทรหาคุณที่ด้านบนของรหัสการใช้งานจริงด้วย:
+config-and-run-font-generator()
สิ่งนี้จะสร้างผลลัพธ์นี้ คุณสามารถปรับแต่งพารามิเตอร์เพื่อสร้างชุดผลลัพธ์ที่แตกต่างกัน อย่างไรก็ตามเนื่องจากเราทุกคนใช้ข้อความค้นหาสื่อที่แตกต่างกันมิกซ์อินบางรายการคุณจะต้องแก้ไขด้วยตนเอง (สไตล์และสื่อ)
สร้าง CSS:
body {
font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 100%;
line-height: 1.3em;
word-wrap: break-word; }
h1, h2, h3, h4, h5, h6 {
line-height: 1em;
font-weight: 700; }
p {
line-height: 1.3em;
font-weight: 300; }
body {
font-size: 1.2em; }
@media screen and (min-width: 680px) {
body {
font-size: 1.4em; } }
@media screen and (min-width: 1224px) {
body {
font-size: 1.6em; } }
@media screen and (min-width: 1400px) {
body {
font-size: 1.8em; } }
h1 {
font-size: 2em; }
h2 {
font-size: 1.8em; }
h3 {
font-size: 1.6em; }
h4 {
font-size: 1.4em; }
h5 {
font-size: 1.2em; }
p {
font-size: 1.2em; }
h6 {
font-size: 1em;
}