textRotate.jspx
上传用户:bj_pst
上传日期:2019-07-07
资源大小:7353k
文件大小:2k
源码类别:

Java编程

开发平台:

Java

  1. <!--
  2.   Licensed to the Apache Software Foundation (ASF) under one or more
  3.   contributor license agreements.  See the NOTICE file distributed with
  4.   this work for additional information regarding copyright ownership.
  5.   The ASF licenses this file to You under the Apache License, Version 2.0
  6.   (the "License"); you may not use this file except in compliance with
  7.   the License.  You may obtain a copy of the License at
  8.       http://www.apache.org/licenses/LICENSE-2.0
  9.   Unless required by applicable law or agreed to in writing, software
  10.   distributed under the License is distributed on an "AS IS" BASIS,
  11.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12.   See the License for the specific language governing permissions and
  13.   limitations under the License.
  14. -->
  15. <!-- 
  16.   - This example is based off the textRotate.svg example that comes
  17.   - with Batik.  The original example was written by Bill Haneman.
  18.   - This version by Mark Roth.
  19.   -->
  20. <svg xmlns="http://www.w3.org/2000/svg"
  21.      width="450" height="500" viewBox="0 0 450 500"
  22.      xmlns:c="http://java.sun.com/jsp/jstl/core"
  23.      xmlns:fn="http://java.sun.com/jsp/jstl/functions"
  24.      xmlns:jsp="http://java.sun.com/JSP/Page">
  25.   <jsp:directive.page contentType="image/svg+xml" />
  26.   <title>JSP 2.0 JSPX</title>
  27.   <!-- select name parameter, or default to JSPX -->
  28.   <c:set var="name" value='${empty fn:escapeXml(param["name"]) ? "JSPX" : fn:escapeXml(param["name"])}'/>
  29.   <g id="testContent">
  30.     <text class="title" x="50%" y="10%" font-size="15" text-anchor="middle" >
  31.             JSP 2.0 XML Syntax (.jspx) Demo</text>
  32.     <text class="title" x="50%" y="15%" font-size="15" text-anchor="middle" >
  33.             Try changing the name parameter!</text>
  34.     <g opacity="1.0" transform="translate(225, 250)" id="rotatedText">
  35.       <c:forEach var="i" begin="1" end="24">
  36.         <jsp:text>
  37.           <![CDATA[<g opacity="0.95" transform="scale(1.05) rotate(15)">]]>
  38.         </jsp:text>
  39.         <text x="0" y="0" transform="scale(1.6, 1.6)" fill="DarkSlateBlue" 
  40.               text-anchor="middle" font-size="40" font-family="Serif" 
  41.               id="words">${name}</text>
  42.       </c:forEach>
  43.       <c:forEach var="i" begin="1" end="24">
  44.         <jsp:text><![CDATA[</g>]]></jsp:text>
  45.       </c:forEach>
  46.       <text style="font-size:75;font-family:Serif;fill:white" 
  47.             text-anchor="middle">${name}</text>
  48.     </g>
  49.   </g>
  50. </svg>