SVG.txt 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. HOW TO PATCH SVG
  2. ================
  3. MANUAL
  4. ------
  5. 1. Clipping Regions for Sidebars
  6. --------------------------------
  7. <defs>
  8. <clipPath id="myClip1"><rect id="Clip-Path-Left" x="0" y="0" width="216" height="400"/></clipPath>
  9. <clipPath id="myClip2"><rect id="Clip-Path-Right" x="0" y="0" width="216" height="400"/></clipPath>
  10. <clipPath id="myClip3"><rect id="Clip-Path-Left-Chat" x="0" y="0" width="216" height="400"/></clipPath>
  11. </defs>
  12. 2. foreignObject TextEditors for Chat
  13. -------------------------------------
  14. <foreignObject id="GameChatEditor" x="864" y="504" width="198" height="120" onmouseover="barHover(evt);" onmouseout="barHoverOut(evt);">
  15. <div xmlns:data="Chat" id="edit" contentEditable="true"
  16. style="padding:4px;background-color:#FFF687;color:#3B5998;font-family:'Exo 2';font-size:16px;"
  17. xmlns="http://www.w3.org/1999/xhtml">Write here some text.</div>
  18. </foreignObject>
  19. <foreignObject id="OnlineChatEditor" x="10" y="504" width="198" height="120" onmouseover="onlineHover(evt);" onmouseout="onlineHoverOut(evt);">
  20. <div xmlns:data="Chat+xxx" contentEditable="true" id="onlineChatEdit"
  21. style="padding:4px;background-color:#FFF687;color:#3B5998;font-family:'Exo 2';font-size:16px;"
  22. xmlns="http://www.w3.org/1999/xhtml">Write here some text.</div>
  23. </foreignObject>
  24. JavaScript
  25. ----------
  26. 3. Chat Containers (insert after Settings element for Z-order)
  27. --------------------------------------------------------------
  28. <g id="Chat" y="0" clip-path="url(#myClip2)" transform="translate(857.000000, 107.000000)"/>
  29. <g id="Online-List" y="0" clip-path="url(#myClip1)" transform="translate(1.000000, 107.000000)"/>
  30. <g id="Online-Chat" y="0" clip-path="url(#myClip3)" transform="translate(1.000000, 107.000000)"/>