Icon Celebrity Journal
general /

How to use firefox’s web developer tools to view website structures in 3d

Chris Hoffman is Editor-in-Chief of How-To Geek. He’s written about technology for over a decade and was a PCWorld columnist for two years. Chris has written for The New York Times, been interviewed as a technology expert on TV stations like Miami’s NBC 6, and had his work covered by news outlets like the BBC. Since 2011, Chris has written over 2,000 articles that have been read nearly one billion times—and that’s just here at How-To Geek. Read more.

How to use firefox’s web developer tools to view website structures in 3d

Firefox 11 added two new web developer tools to Firefox’s already impressive arsenal. The Tilt feature visualizes website structures in 3D, while the Style Editor can edit CSS stylesheets on the fly.

The 3D feature, known as Tilt, is a way of visualizing a website’s DOM. It integrates with the existing Document Inspector and uses WebGL to display rich 3D graphics in your browser.

Tilt – 3D Website Visualization

You can access Tilt from within Firefox’s Page Inspector. To get started, open the Page Inspector by selecting “Inspect” from the Web Developer menu. You can also right-click in the current page and select “Inspect Element” to start the inspector at a specific element.

How to use firefox’s web developer tools to view website structures in 3d

Click the “3D” button on the inspector toolbar.

How to use firefox’s web developer tools to view website structures in 3d

You’ll see the page’s structure after activating 3D mode, but it will look flat until you rotate it.

How to use firefox’s web developer tools to view website structures in 3d

Rotate the model by left-clicking, move the image around by right-clicking, and zoom in and out using the mouse wheel.How to use firefox’s web developer tools to view website structures in 3d

This view is integrated with the other tools in the inspector. If you have the HTML or Style panels open, you can click an element on hte page to view that element’S HTML code or CSS properties.

How to use firefox’s web developer tools to view website structures in 3d

More 3D Features

The 3D visualization feature was based off the Tilt extension, but it doesn’t have all the features of the Tilt extension. if you want to customize the colors or even export the visualization as a 3D model file for use with a 3D editing program, you’ll need to install the Tilt 3D add-on. Once you have, you’ll get a new “Tilt” option in the Web Developer menu.

How to use firefox’s web developer tools to view website structures in 3d

Click the Cancel button to use the old version of Tilt when prompted.

How to use firefox’s web developer tools to view website structures in 3d

You’ll find controls to customize the visualization at the left side of the window and other options, including the export feature, at the top of the page.

How to use firefox’s web developer tools to view website structures in 3d

CSS Style Editor

To view and edit a page’s CSS style sheets, open the Style Editor from the Web Developer menu.

How to use firefox’s web developer tools to view website structures in 3d

The Style editor lists the stylesheets on the current page. Toggle a stylesheet on or off by clicking the eye icon to the left of the stylesheet’s name. Edit a stylesheet by selecting it and modifying the code.

How to use firefox’s web developer tools to view website structures in 3d

Changes are reflected on the page immediately. If you toggle a stylesheet off, the page will lose its style information. If you edit a stylesheet, you’ll see the edits appear on the page while you type.

How to use firefox’s web developer tools to view website structures in 3d

You can save a copy of one of the stylesheets to your computer, import an existing stylesheet from your computer, or add a new, blank stylesheet with the Save, Import, or New links in the Style Editor window.

The 3D visualization feature watches for changes on the current page and notices when changes occur. When you use the Style Editor with the 3D inspector open, your changes will be reflected immediately in the 3D view. This also works with third-party extensions that modify web pages, such as Firebug.

Firefox Developer Tools is a set of web developer tools built into Firefox. You can use them to examine, edit, and debug HTML, CSS, and JavaScript.

This section contains detailed guides to all of the tools as well as information on how to debug Firefox for Android, how to extend DevTools, and how to debug the browser as a whole.

If you have any feedback on DevTools or want to contribute to the project, you can join the DevTools community.

Note: If you are just getting started with web development and using developer tools, our learning docs will help you — see Getting started with the Web and What are browser developer tools? for good starting points.

The Core Tools

You can open the Firefox Developer Tools from the menu by selecting Tools > Web Developer > Web Developer Tools or use the keyboard shortcut Ctrl + Shift + I or F12 on Windows and Linux, or Cmd + Opt + I on macOS.

The ellipsis menu on the right-hand side of Developer Tools contains several commands that let you perform actions or change tool settings.

How to use firefox’s web developer tools to view website structures in 3d

This button only appears when there are multiple iframes on a page. Click it to display a list of the iframes on the current page and select the one with which you want to work.
Click this button to take a screenshot of the current page. (Note: This feature is not turned on by default and must be enabled in settings before the icon will appear.)
Toggles Responsive Design Mode.
Opens the menu that includes docking options, the ability to show or hide the split console, and Developer Tools settings. The menu also includes links to the documentation for Firefox Web Tools and the Mozilla Community.
Closes the Developer Tools

Page Inspector

How to use firefox’s web developer tools to view website structures in 3d

View and edit page content and layout. Visualize many aspects of the page including the box model, animations, and grid layouts.

Web Console

How to use firefox’s web developer tools to view website structures in 3d

See messages logged by a web page and interact with the page using JavaScript.

JavaScript Debugger

How to use firefox’s web developer tools to view website structures in 3d

Stop, step through, examine, and modify the JavaScript running on a page.

Network Monitor

How to use firefox’s web developer tools to view website structures in 3d

See the network requests made when a page is loaded.

Performance Tools

How to use firefox’s web developer tools to view website structures in 3d

Analyze your site’s general responsiveness, JavaScript, and layout performance.

Responsive Design Mode

How to use firefox’s web developer tools to view website structures in 3d

See how your website or app will look and behave on different devices and network types.

Accessibility inspector

How to use firefox’s web developer tools to view website structures in 3d

Provides a means to access the page’s accessibility tree, allowing you to check what’s missing or otherwise needs attention.

Application panel

How to use firefox’s web developer tools to view website structures in 3d

Provides tools for inspecting and debugging modern web apps (also known as Progressive Web Apps). This includes inspection of service workers and web app manifests.

Note: The collective term for the UI inside which the DevTools all live is the Toolbox.

More Tools

These developer tools are also built into Firefox. Unlike the “Core Tools” above, you might not use them every day.

For the latest developer tools and features, try Firefox Developer Edition.

Connecting the Developer Tools

If you open the developer tools using keyboard shortcuts or the equivalent menu items, they’ll target the document hosted by the currently active tab. But you can attach the tools to a variety of other targets, too, both within the current browser and in different browsers or even different devices.

Debugging the browser

By default, the developer tools are attached to a web page or web app. But you can also connect them to the browser as a whole. This is useful for browser and add-on development.

Extending DevTools

For information on extending the Firefox DevTools, see Extending the developer tools over in the Browser Extensions section of MDN.

Migrating from Firebug

Firebug has come to the end of its lifespan (see Firebug lives on in Firefox DevTools for details of why), and we appreciate that some people will find migrating to another less familiar set of DevTools to be challenging. To ease a transition from Firebug to the Firefox developer tools, we have written a handy guide — Migrating from Firebug.

Contribute

If you want to help improve the developer tools, these resources will get you started.

Found a problem with this page?

  • Edit on GitHub
  • Source on GitHub
  • Report a problem with this content on GitHub
  • Want to fix the problem yourself? See our Contribution guide.

Last modified: May 21, 2021 , by MDN contributors

  • Web Technologies
  • Learn Web Development
  • About MDN
  • Feedback
  • About
  • MDN Web Docs Store
  • Contact Us
  • Firefox
  • MDN on Twitter
  • MDN on Github

Mozilla

  • Mozilla on Twitter
  • Mozilla on Instagram

© 2005- 2021 Mozilla and individual contributors. Content is available under these licenses.

How to use firefox’s web developer tools to view website structures in 3d

Geoffrey_Carr

How to use firefox’s web developer tools to view website structures in 3d

Firefox 11 đã thêm hai công cụ phát triển web mới vào kho vũ khí đã được ấn tượng của Firefox. Tính năng Tilt trực quan hóa cấu trúc trang web trong 3D, trong khi Trình chỉnh sửa kiểu có thể chỉnh sửa tệp định kiểu CSS khi đang di chuyển.

Tính năng 3D, được gọi là Nghiêng, là cách hiển thị DOM của trang web. Nó tích hợp với Trình kiểm tra tài liệu hiện có và sử dụng WebGL để hiển thị đồ họa 3D phong phú trong trình duyệt của bạn.

Nghiêng – Hình ảnh trang web 3D

Bạn có thể truy cập Tilt từ trong Trình kiểm tra trang của Firefox. Để bắt đầu, hãy mở Trình kiểm tra trang bằng cách chọn “Kiểm tra” từ trình đơn Nhà phát triển web. Bạn cũng có thể nhấp chuột phải vào trang hiện tại và chọn “Kiểm tra phần tử” để bắt đầu thanh tra tại một phần tử cụ thể.

How to use firefox’s web developer tools to view website structures in 3d

Nhấp vào nút “3D” trên thanh công cụ thanh tra.

How to use firefox’s web developer tools to view website structures in 3d

Bạn sẽ thấy cấu trúc của trang sau khi kích hoạt chế độ 3D, nhưng nó sẽ trông phẳng cho đến khi bạn xoay nó.

How to use firefox’s web developer tools to view website structures in 3d

Xoay mô hình bằng cách nhấp chuột trái, di chuyển hình ảnh xung quanh bằng cách nhấp chuột phải và phóng to và thu nhỏ bằng cách sử dụng con lăn chuột.

How to use firefox’s web developer tools to view website structures in 3d

Quan điểm này được tích hợp với các công cụ khác trong thanh tra viên. Nếu bạn mở bảng HTML hoặc Kiểu, bạn có thể nhấp vào phần tử trên trang hte để xem thuộc tính CSS hoặc mã HTML của phần tử đó.

How to use firefox’s web developer tools to view website structures in 3d

Các tính năng 3D khác

Tính năng trực quan hóa 3D dựa trên phần mở rộng Tilt, nhưng nó không có tất cả các tính năng của tiện ích Tilt. nếu bạn muốn tùy chỉnh màu hoặc thậm chí xuất trực quan dưới dạng tệp mô hình 3D để sử dụng với chương trình chỉnh sửa 3D, bạn sẽ cần phải cài đặt tiện ích bổ sung 3D nghiêng. Khi đã có, bạn sẽ nhận được tùy chọn “Tilt” mới trong trình đơn Nhà phát triển web.

How to use firefox’s web developer tools to view website structures in 3d

Nhấp vào nút Hủy để sử dụng phiên bản Tilt cũ khi được nhắc.

How to use firefox’s web developer tools to view website structures in 3d

Bạn sẽ tìm thấy các điều khiển để tùy chỉnh hình ảnh ở phía bên trái của cửa sổ và các tùy chọn khác, bao gồm cả tính năng xuất, ở đầu trang.

How to use firefox’s web developer tools to view website structures in 3d

Trình chỉnh sửa kiểu CSS

Để xem và chỉnh sửa các trang mẫu CSS của trang, hãy mở Trình chỉnh sửa kiểu từ trình đơn Nhà phát triển web.

How to use firefox’s web developer tools to view website structures in 3d

Trình chỉnh sửa Kiểu liệt kê các bảng định kiểu trên trang hiện tại. Bật hoặc tắt biểu định kiểu bằng cách nhấp vào biểu tượng con mắt ở bên trái tên của biểu định kiểu. Chỉnh sửa biểu định kiểu bằng cách chọn nó và sửa đổi mã.

How to use firefox’s web developer tools to view website structures in 3d

Các thay đổi được phản ánh trên trang ngay lập tức. Nếu bạn tắt bảng định kiểu, trang sẽ mất thông tin kiểu của nó. Nếu bạn chỉnh sửa biểu định kiểu, bạn sẽ thấy các chỉnh sửa xuất hiện trên trang khi bạn nhập.

How to use firefox’s web developer tools to view website structures in 3d

Bạn có thể lưu một bản sao của một trong các bảng định kiểu vào máy tính của bạn, nhập biểu định kiểu hiện có từ máy tính của bạn hoặc thêm biểu định kiểu mới, trống với các liên kết Lưu, Nhập hoặc Mới trong cửa sổ Trình chỉnh sửa Kiểu.

Tính năng trực quan hóa 3D sẽ theo dõi các thay đổi trên trang hiện tại và các thông báo khi có thay đổi. Khi bạn sử dụng Trình chỉnh sửa kiểu với trình kiểm tra 3D mở, các thay đổi của bạn sẽ được phản ánh ngay lập tức trong chế độ xem 3D. Điều này cũng hoạt động với các tiện ích của bên thứ ba sửa đổi các trang web, chẳng hạn như Firebug.

  • Sfaturi
  • Blogul
  • Howto
  • Ferestre
  • Telefon

How to use firefox’s web developer tools to view website structures in 3d

How to use firefox’s web developer tools to view website structures in 3d

How to use firefox’s web developer tools to view website structures in 3d

  • Principal 
  • Blogul 
  • Cum să utilizați Instrumentele de dezvoltare Web ale Firefox pentru a vizualiza structurile web în 3D

How to use firefox’s web developer tools to view website structures in 3d

Firefox 11 a adăugat două noi instrumente de dezvoltare web pentru arsenalul deja impresionant al Firefox. Funcția Tilt vizualizează structurile site-urilor web în 3D, în timp ce editorul de stil poate edita foile de stil CSS în zbor.

Caracteristica 3D, cunoscută sub numele de Tilt, este o modalitate de a vizualiza DOM-ul unui site web. Se integrează cu inspectorul documentar existent și utilizează WebGL pentru a afișa grafică 3D bogată în browser.

Tilt – vizualizare 3D a site-ului

Puteți accesa Tilt din cadrul Inspectorului paginii Firefox. Pentru a începe, deschideți Inspectorul de pagini selectând “Inspectați” din meniul Web Developer. De asemenea, puteți să faceți clic dreapta pe pagina curentă și să selectați “Inspectați elementul” pentru a porni inspectorul la un anumit element.

How to use firefox’s web developer tools to view website structures in 3d

Faceți clic pe butonul “3D” de pe bara de instrumente a inspectorului.

How to use firefox’s web developer tools to view website structures in 3d

Veți vedea structura paginii după activarea modului 3D, dar va arăta plat până când îl rotiți.

How to use firefox’s web developer tools to view website structures in 3d

Rotiți modelul făcând clic stânga, mutați imaginea prin clic-dreapta și măriți și micșorați folosind rotița mouse-ului.

How to use firefox’s web developer tools to view website structures in 3d

Această vizualizare este integrată cu celelalte instrumente din inspector. Dacă aveți panourile HTML sau Stil deschise, puteți face clic pe un element de pe hte pentru a vizualiza codul HTML al elementului sau proprietățile CSS.

How to use firefox’s web developer tools to view website structures in 3d

Mai multe caracteristici 3D

Caracteristica de vizualizare 3D a fost bazată pe extensia Tilt, dar nu are toate caracteristicile extensiei Tilt. dacă doriți să personalizați culorile sau chiar să exportați vizualizarea ca fișier model 3D pentru utilizare cu un program de editare 3D, va trebui să instalați suplimentul Tilt 3D. Odată ce ați primit, veți primi o nouă opțiune “Tilt” în meniul Web Developer.

How to use firefox’s web developer tools to view website structures in 3d

Faceți clic pe butonul Anulare pentru a utiliza vechea versiune a Tilt atunci când vi se solicită.

How to use firefox’s web developer tools to view website structures in 3d

Veți găsi comenzi pentru a personaliza vizualizarea din partea stângă a ferestrei și alte opțiuni, inclusiv caracteristica de export, în partea de sus a paginii.

How to use firefox’s web developer tools to view website structures in 3d

Editor de stil CSS

Pentru a vizualiza și a edita foile de stil CSS ale unei pagini, deschideți Editorul de stil din meniul Web Developer.

How to use firefox’s web developer tools to view website structures in 3d

Editorul de stil listează foile de stil de pe pagina curentă. Activează sau dezactivează o foaie de stil făcând clic pe pictograma ochi din stânga numelui stilului. Editați o foaie de stil selectând-o și modificând codul.

How to use firefox’s web developer tools to view website structures in 3d

Modificările sunt reflectate imediat pe pagină. Dacă dezactivați o foaie de stil, pagina va pierde informațiile despre stil. Dacă editați o foaie de stil, veți vedea că editările apar pe pagină în timp ce tastați.

How to use firefox’s web developer tools to view website structures in 3d

Puteți salva o copie a uneia dintre foile de stil pe computerul dvs., puteți importa o foaie de stil existentă de pe computer sau puteți adăuga o foaie de stil nouă, cu link-urile Salvează, Import sau Noi în fereastra Editor stil.

Caracteristica de vizualizare 3D urmărește modificările de pe pagina curentă și notificările când apar schimbări. Când utilizați Editorul stilului cu inspectorul 3D deschis, modificările dvs. vor fi reflectate imediat în vizualizarea 3D. Acest lucru funcționează, de asemenea, cu extensiile terță parte care modifică paginile web, cum ar fi Firebug.

How to use firefox’s web developer tools to view website structures in 3d

Geoffrey_Carr

How to use firefox’s web developer tools to view website structures in 3d

A Firefox 11 két új webfejlesztő eszközt adott a Firefox már meglévő arzenáljába. A Tilt funkció a webhely struktúráit 3D-ben ábrázolja, míg a Style Editor szerkesztheti a CSS stíluslapokat.

A 3D-s funkció, a Tilt néven ismert módja egy weboldal DOM vizualizálásának. Összekapcsolódik a meglévő dokumentumellenőrzővel, és a WebGL segítségével böngészőben gazdag 3D grafikát jelenít meg.

Tilt – 3D Honlap Vizualizálás

Hozzáférhet a Tilt-ból a Firefox Page Inspector oldalán. Az induláshoz nyissa meg az Oldalfelügyelőt az “Inspect” menüpont kiválasztásával a Web Developer menüből. A jobb oldali egérgombbal az aktuális oldalon is kiválaszthatja az “Elem ellenőrzése” elemet, és elindíthatja a felügyelőt egy adott elemen.

How to use firefox’s web developer tools to view website structures in 3d

Kattintson a “3D” gombra a felügyelő eszköztárán.

How to use firefox’s web developer tools to view website structures in 3d

A 3D-mód aktiválása után megjelenik az oldal szerkezete, de lapos lesz, amíg el nem forgatja.

How to use firefox’s web developer tools to view website structures in 3d

Forgassa el a modellt a bal egérgombbal, mozgassa a képet a jobb egérgombbal, majd nagyítsa ki és kicsinyítse az egér kereket.

How to use firefox’s web developer tools to view website structures in 3d

Ez a nézet integrálva van az ellenőr többi eszközével. Ha a HTML vagy a Stílus panelek megnyitva van, akkor egy elemre kattintva megtekintheti az elem HTML kódját vagy CSS-tulajdonságait.

How to use firefox’s web developer tools to view website structures in 3d

További 3D funkciók

A 3D-s vizualizációs funkció a Tilt kiterjesztésen alapult, de nem rendelkezik a Tilt kiterjesztés összes funkciójával. Ha a színeket testreszabhatja, vagy 3D formátumú fájlt szeretné exportálni a 3D-s szerkesztő programhoz, akkor telepítenie kell a Tilt 3D bővítményt. Miután megkapta, új “Tilt” lehetőséget kap a Web Developer menüben.

How to use firefox’s web developer tools to view website structures in 3d

Kattintson a Mégsem gombra a régi Tilt-verzió használatához.

How to use firefox’s web developer tools to view website structures in 3d

A vezérlőelemek az ablak bal oldalán megjelenő vizualizálást és az oldal tetején található egyéb opciókat, köztük az exportálási funkciót testreszabhatja.

How to use firefox’s web developer tools to view website structures in 3d

CSS stílusszerkesztő

Az oldal CSS-stíluslapainak megtekintéséhez és szerkesztéséhez nyissa meg a Stílusszerkesztőt a Webfejlesztő menüből.

How to use firefox’s web developer tools to view website structures in 3d

A stílusszerkesztő felsorolja a stíluslapokat az aktuális oldalon. A stíluslap be- vagy kikapcsolása a stíluslap neve bal oldalán található szem ikonra kattintva. Módosítsa a stíluslapot a kiválasztásával és a kód módosításával.

How to use firefox’s web developer tools to view website structures in 3d

A változtatások azonnal megjelenik az oldalon. Ha ki van kapcsolva egy stíluslap, akkor az oldal elveszíti stílusinformációit. Ha szerkesztesz egy stíluslapot, megjelenik az oldal szerkesztés közben történő szerkesztések.

How to use firefox’s web developer tools to view website structures in 3d

Az egyik stíluslap egy példányát mentheti a számítógépre, importálhat egy meglévő stíluslapot a számítógépről, vagy új, üres stíluslapot adhat hozzá a Stílusszerkesztő ablak Mentés, importálása vagy Új hivatkozásokkal.

A 3D-s vizualizációs funkció figyeli az aktuális oldal módosításait, és észleli a változások bekövetkezését. Ha a Stílusszerkesztőt használja a 3D ellenőr megnyitásával, a módosítások azonnal megjelenik a 3D nézetben. Ez olyan külső böngészővel is működik, amely módosítja a weboldalakat, mint például a Firebug.

  • Tipy
  • Blog
  • Jak
  • Okna
  • Telefon

How to use firefox’s web developer tools to view website structures in 3d

How to use firefox’s web developer tools to view website structures in 3d

How to use firefox’s web developer tools to view website structures in 3d

  • Hlavní 
  • Blog 
  • Jak používat nástroje webových vývojářů prohlížeče Firefox pro zobrazení webových struktur ve 3D

How to use firefox’s web developer tools to view website structures in 3d

Firefox 11 přidal dva nové nástroje pro vývojáře do již působivého arzenálu Firefoxu. Funkce Tilt zobrazuje struktury webových stránek ve 3D, zatímco Editor stylů může upravovat styly stylů CSS za běhu.

3D funkce, známá jako Tilt, je způsob vizualizace DOM webových stránek. Integruje se s existujícím Inspektor dokumentů a používá WebGL k zobrazení bohaté 3D grafiky ve vašem prohlížeči.

Tilt – 3D vizualizace webových stránek

Ke zpřístupnění Tilt můžete přistupovat z inspektora stránky aplikace Firefox. Chcete-li začít, otevřete stránku Inspector výběrem položky “Inspect” z nabídky Web Developer. Můžete také kliknout pravým tlačítkem myši na aktuální stránku a zvolit “Inspect Element” a spustit inspektor na určitém prvku.

How to use firefox’s web developer tools to view website structures in 3d

Klikněte na tlačítko “3D” na panelu nástrojů inspektoru.

How to use firefox’s web developer tools to view website structures in 3d

Struktura stránky se zobrazí po aktivaci 3D režimu, ale bude vypadat rovně, dokud jej neotočíte.

How to use firefox’s web developer tools to view website structures in 3d

Otočte model klepnutím levým tlačítkem myši, přemístěním obrázku klepnutím pravým tlačítkem myši a přiblížením a oddáváním pomocí kolečka myši.

How to use firefox’s web developer tools to view website structures in 3d

Tento pohled je integrován s ostatními nástroji v inspektoru. Pokud máte otevřené panely HTML nebo Styly, můžete klepnutím na prvek na stránce hte zobrazit HTML kód nebo vlastnosti CSS daného prvku.

How to use firefox’s web developer tools to view website structures in 3d

Další funkce 3D

Funkce 3D vizualizace byla založena na rozšíření Tilt, ale nemá všechny funkce rozšíření Tilt. pokud chcete přizpůsobit barvy nebo dokonce exportovat vizualizaci jako 3D modelový soubor pro použití s ​​3D editačním programem, budete muset nainstalovat doplněk Tilt 3D. Až budete mít, dostanete novou volbu “Tilt” v nabídce Web Developer.

How to use firefox’s web developer tools to view website structures in 3d

Klepnutím na tlačítko Storno použijete starou verzi nástroje Tilt po zobrazení výzvy.

How to use firefox’s web developer tools to view website structures in 3d

Najdete zde ovládací prvky pro přizpůsobení vizualizace v levé části okna a další možnosti včetně funkce exportu v horní části stránky.

How to use firefox’s web developer tools to view website structures in 3d

Editor stylu CSS

Chcete-li zobrazit a upravit listy stylů stránky CSS, otevřete Editor stylů z nabídky Web Developer.

How to use firefox’s web developer tools to view website structures in 3d

Editor stylů uvádí seznam stylů na aktuální stránce. Chcete-li zapnout nebo vypnout styl stylu, klepněte na ikonu oka nalevo od názvu stylu. Upravte styl stylu tak, že jej vyberete a upravíte kód.

How to use firefox’s web developer tools to view website structures in 3d

Změny se okamžitě promítají na stránce. Pokud přepnete styl stylu, stránka ztratí informace o stylu. Pokud upravujete styl stylu, zobrazí se během zadávání úprav na stránce.

How to use firefox’s web developer tools to view website structures in 3d

Do počítače můžete uložit kopii jednoho ze stylů, importovat stávající stylový štítek z počítače nebo přidat nový prázdný styl stylu pomocí odkazů Uložit, Importovat nebo Nové v okně Editoru stylů.

Funkce 3D vizualizace sleduje změny na aktuální stránce a upozorňuje na změny. Když používáte Editor stylů s otevřeným inspektorem 3D, vaše změny se okamžitě promítnou do zobrazení 3D. To také funguje s rozšířeními třetích stran, které upravují webové stránky, například Firebug.

How to use firefox’s web developer tools to view website structures in 3d

Firefox 11 додав два нові інструменти веб-розробника до вже вражаючого арсеналу Firefox. Функція Tilt візуалізує структури веб-сайтів у форматі 3D, а редактор стилів може в будь-який час редагувати таблиці стилів CSS.

Функція 3D, відома як Tilt, – це спосіб візуалізації DOM веб-сайту. Він інтегрується з існуючим інспектором документів і використовує WebGL для відображення багатогранної 3D графіки у вашому браузері.

Нахил – 3D візуалізація веб-сайту

Доступ до Tilt можна отримати в межах Інспектора сторінок Firefox. Щоб розпочати роботу, відкрийте Інспектор сторінок, вибравши опцію “Перевірити” в меню Веб-розробник. Ви також можете клацнути правою кнопкою миші на поточній сторінці та вибрати “Перевірити елемент”, щоб запустити інспектора на певному елементі.

How to use firefox’s web developer tools to view website structures in 3d

Натисніть кнопку “3D” на панелі інструментів інспектора.

How to use firefox’s web developer tools to view website structures in 3d

Після активації режиму 3D ви побачите структуру сторінки, але вона буде виглядати рівно, поки ви не повернете її.

How to use firefox’s web developer tools to view website structures in 3d

Поверніть модель, клацнувши лівою кнопкою миші, перемістіть зображення навколо, клацнувши правою кнопкою миші, і збільшуйте та зменшуйте її за допомогою колеса миші.How to use firefox’s web developer tools to view website structures in 3d

Цей вигляд інтегрований з іншими інструментами інспектора. Якщо панелі HTML або Style відкриті, можна натиснути елемент на сторінці hte, щоб переглянути HTML-код або властивості CSS цього елемента.

How to use firefox’s web developer tools to view website structures in 3d

Більше 3D-функцій

Функція 3D-візуалізації базувалася на розширенні Tilt, але не має всіх функцій розширення Tilt. якщо ви хочете налаштувати кольори або навіть експортувати візуалізацію як файл тривимірної моделі для використання з програмою редагування 3D, потрібно встановити додатковий компонент Tilt 3D. Після цього ви отримаєте нову опцію “Нахил” у меню веб-розробника.

How to use firefox’s web developer tools to view website structures in 3d

Натисніть кнопку Скасувати, щоб використовувати стару версію Tilt під час запиту.

How to use firefox’s web developer tools to view website structures in 3d

Ви знайдете елементи керування для налаштування візуалізації у лівій частині вікна та інших параметрів, включаючи функцію експортування, у верхній частині сторінки.

How to use firefox’s web developer tools to view website structures in 3d

Редактор стилів CSS

Для перегляду та редагування таблиць стилів CSS сторінки відкрийте редактор стилів у меню веб-розробника.

How to use firefox’s web developer tools to view website structures in 3d

Редактор стилів відображає таблиці стилів на поточній сторінці. Увімкніть або вимкніть таблицю стилів, натиснувши на значок ока зліва від назви таблиці стилів. Відредагуйте таблицю стилів, вибравши її та змінивши код.

How to use firefox’s web developer tools to view website structures in 3d

Зміни відображаються на сторінці негайно. Якщо ви вимкнете таблицю стилів, сторінка втратить інформацію про стиль. Якщо ви редагуєте таблицю стилів, ви побачите, що внесені зміни відображатимуться на сторінці під час введення тексту.

How to use firefox’s web developer tools to view website structures in 3d

Можна зберегти копію однієї з таблиць стилів на комп’ютер, імпортувати існуючу таблицю стилів з комп’ютера або додати нову, порожню таблицю стилів за допомогою пунктів Зберегти, Імпортувати або Нові посилання у вікні редактора стилів.

Функція 3D-візуалізації спостерігає за змінами на поточній сторінці та помічає, коли відбуваються зміни. Коли ви використовуєте редактор стилів з відкритим 3D-інспектором, зміни відображатимуться негайно в 3D-перегляді. Це також працює з розширеннями сторонніх виробників, які змінюють веб-сторінки, такі як Firebug.

  • טיפים
  • בלוג
  • איך ל
  • חלונות
  • מכשיר טלפון

How to use firefox’s web developer tools to view website structures in 3d

How to use firefox’s web developer tools to view website structures in 3d

How to use firefox’s web developer tools to view website structures in 3d

  • עיקרי 
  • בלוג 
  • כיצד להשתמש בפיירפוקס האינטרנט כלים למפתחים כדי להציג מבנים באתר ב 3D

How to use firefox’s web developer tools to view website structures in 3d

אתר 11 הוסיף שני כלי מפתח אינטרנט חדש ארסנל כבר פיירפוקס מרשים. התכונה ‘הטיה’ מדמיין מבני אתר בתלת-ממד, ואילו עורך הסגנון יכול לערוך דפי סגנון CSS במהירות.

תכונה 3D, המכונה הטיה, היא דרך לדמיין DOM של האתר. הוא משתלב עם מפקח המסמכים הקיים ומשתמש ב- WebGL להצגת גרפיקה תלת-ממדית עשירה בדפדפן שלך.

הטיה – 3D ויזואליזציה באתר

ניתן לגשת אל הטיל מתוך מפקח הדף של Firefox. כדי להתחיל, פתח את מפקח הדף על-ידי בחירה באפשרות “בדוק” מתפריט מפתח האינטרנט. ניתן גם ללחוץ לחיצה ימנית על הדף הנוכחי ולבחור “בדוק אלמנט” כדי להפעיל את מפקח על אלמנט מסוים.

How to use firefox’s web developer tools to view website structures in 3d

לחץ על כפתור “3D” בסרגל הכלים מפקח.

How to use firefox’s web developer tools to view website structures in 3d

תראה את מבנה הדף לאחר הפעלת מצב 3D, אך הוא ייראה שטוח עד שתסובב אותו.

How to use firefox’s web developer tools to view website structures in 3d

סובב את הדגם על-ידי לחיצה שמאלית, הזז את התמונה על-ידי לחיצה ימנית, והזום והחזרה באמצעות גלגל העכבר.

How to use firefox’s web developer tools to view website structures in 3d

השקפה זו משולבת עם הכלים האחרים במפקח. אם יש לך את לוחות HTML או סגנון פתוח, אתה יכול ללחוץ על אלמנט בדף hte כדי להציג קוד HTML זה HTML או CSS תכונות.

How to use firefox’s web developer tools to view website structures in 3d

תכונות 3D נוספות

התכונה להדמיה תלת-ממדית התבססה על ההרחבה ‘הטיה’, אך אין בה את כל התכונות של תוסף הטיה. אם אתה רוצה להתאים אישית את הצבעים או אפילו לייצא את הדמיה כקובץ מודל 3D לשימוש עם תוכנית עריכה 3D, תצטרך להתקין את ההטיה 3D התוספת. ברגע שיש לך, תקבל אפשרות חדשה “הטיה” בתפריט מפתח אינטרנט.

How to use firefox’s web developer tools to view website structures in 3d

לחץ על הלחצן ביטול כדי להשתמש בגרסה הישנה של הטיה כשתתבקש.

How to use firefox’s web developer tools to view website structures in 3d

תוכלו למצוא פקדים כדי להתאים אישית את ההדמיה בצד שמאל של החלון ואפשרויות אחרות, כולל תכונת הייצוא, בחלק העליון של הדף.

How to use firefox’s web developer tools to view website structures in 3d

עורך CSS סגנון

כדי להציג ולערוך גליונות סגנונות CSS של דף, פתח את עורך הסגנון מתפריט מפתח האינטרנט.

How to use firefox’s web developer tools to view website structures in 3d

עורך הסגנון מפרט את דפי הסגנונות בדף הנוכחי. החלף גליון סגנונות לסירוגין או על ידי לחיצה על סמל העין שמשמאל לשם הסגנונות. ערוך גיליון סגנונות על-ידי בחירתו ושינוי הקוד.

How to use firefox’s web developer tools to view website structures in 3d

השינויים משתקפים מיד בדף. אם תפעיל גליון סגנונות, הדף יאבד את פרטי הסגנון שלו. אם תערוך גליון סגנונות, תראה את העריכות מופיעות בדף בזמן ההקלדה.

How to use firefox’s web developer tools to view website structures in 3d

באפשרותך לשמור עותק של אחד מגליונות הסגנונות במחשב, לייבא גליון סגנונות קיים מהמחשב או להוסיף גיליון סגנונות ריק חדש עם הקישורים שמירה, ייבוא ​​או חדש בחלון ‘עורך סגנונות’.

תכונת הדמיית התלת-ממד צופה בשינויים בדף הנוכחי ובהודעות כאשר מתרחשים שינויים. כאשר אתה משתמש בעורך הסגנון כשמפקח התלת-ממד פתוח, השינויים שלך ישתקפו מיד בתצוגת תלת-ממד. פעולה זו פועלת גם עם הרחבות של צד שלישי שמשנות דפי אינטרנט, כגון Firebug.

How to use firefox’s web developer tools to view website structures in 3d

Geoffrey_Carr

How to use firefox’s web developer tools to view website structures in 3d

“Firefox 11” pridūrė du naujus žiniatinklio kūrimo įrankius jau įspūdingam “Firefox” arsenalui. “Tilt” funkcija vizualizuoja svetainės struktūras 3D formatu, o “Style Editor” gali redaguoti CSS stilių lenteles.

3D funkcija, vadinama “Tilt”, yra vizualizuoti svetainės DOM būdas. Jis integruojamas su esamu dokumentų inspektoriumi ir naudoja “WebGL”, kad naršyklėje būtų rodomos raiškios 3D grafikos.

“Tilt” – “3D” svetainės vizualizacija

Galite pasiekti “Tilt” per “Firefox” puslapio inspektorių. Norėdami pradėti, atidarykite puslapio inspektorių, pasirinkdami “Tikrinti” meniu “Interneto kūrėjas”. Taip pat galite dešiniuoju pelės klavišu spustelėti dabartiniame puslapyje ir pasirinkti “Inspection Element”, kad įjungtumėte inspektorių tam tikrame elemente.

How to use firefox’s web developer tools to view website structures in 3d

Spustelėkite “3D” mygtuką inspektoriaus įrankių juostoje.

How to use firefox’s web developer tools to view website structures in 3d

Po to, kai įjungsite trimačiojo režimą, pamatysite puslapio struktūrą, tačiau jis pasidaro plokščias, kol pasukote.

How to use firefox’s web developer tools to view website structures in 3d

Pasukite modelį kairiuoju spragtelėjimu, perkelkite vaizdą dešiniuoju pelės klavišu ir padidinkite arba padidinkite pelės ratuku.

How to use firefox’s web developer tools to view website structures in 3d

Šis vaizdas integruotas su kitomis inspektoriaus priemonėmis. Jei turite atidaryti “HTML” arba “Style” skydai, galite spustelėti elementą puslapyje hte, norėdami peržiūrėti HTML elemento elementus arba CSS savybes.

How to use firefox’s web developer tools to view website structures in 3d

Daugiau 3D funkcijų

3D vizualizavimo funkcija buvo pagrįsta “Tilt” plėtiniu, tačiau ji neturi visų “Tilt” plėtinio funkcijų. jei norite pritaikyti spalvas arba net eksportuoti vaizdą kaip 3D modelio failą, skirtą naudoti 3D redagavimo programoje, turėsite įdiegti “Tilt 3D” priedą. Kai turėsite, “Web Developer” meniu gausite naują “Tilt” parinktį.

How to use firefox’s web developer tools to view website structures in 3d

Paspauskite mygtuką “Atšaukti”, jei būsite paraginti naudoti seną “Tilt” versiją.

How to use firefox’s web developer tools to view website structures in 3d

Rasite valdiklius, kad galėtumėte tinkinti vizualizaciją kairiojoje lango pusėje ir kitas parinktis, įskaitant eksporto funkciją, puslapio viršuje.

How to use firefox’s web developer tools to view website structures in 3d

CSS stiliaus redaktorius

Norėdami peržiūrėti ir redaguoti puslapio CSS stiliaus lapus, atidarykite “Style Editor” meniu “Web Developer”.

How to use firefox’s web developer tools to view website structures in 3d

Stiliaus redaktorius nurodo stiliaus lenteles esančiame puslapyje. Įjunkite arba išjunkite stilių, spustelėdami akies piktogramą, esančią lentelės stiliaus kairėje. Redaguokite stilių, pasirinkdami ją ir pakeisdami kodą.

How to use firefox’s web developer tools to view website structures in 3d

Pakeitimai nedelsiant atsispindi puslapyje. Jei išjungsite stilių lentelę, puslapis praras stiliaus informaciją. Jei redaguosite stilių lentelę, pamatysite, kad redaguoti puslapiai įvyks.

How to use firefox’s web developer tools to view website structures in 3d

Galite įrašyti vieną iš stiliaus lapų į savo kompiuterį, importuoti esamą stilių iš savo kompiuterio arba įtraukti naują tuščią lapo stilių su langų “Style Editor” elementu “Išsaugoti, importuoti” arba “Naujas”.

3D vizualizavimo funkcija žiūri į dabartinio puslapio pakeitimus ir pranešimus, kai įvyksta pakeitimai. Kai naudojate Style Editor, atidarę 3D inspektorių, jūsų pakeitimai bus nedelsiant parodyti 3D rodinyje. Tai taip pat veikia su trečiųjų šalių plėtiniais, kurie keičia tinklalapius, pvz., “Firebug”.