Hi nice to be here,
I wanna create a banner in photoshop anyone who can help?
will appreciate

thanks

Dani AI

Generated

Quick, practical update for : if by “flash banner” you meant a SWF/Flash Player output, don’t build SWF — Adobe retired Flash Player on December 31, 2020 and Flash content has been blocked in modern browsers since January 2021. Target HTML5/CSS/JS, animated GIF/MP4, or vector formats instead for real-world delivery. Adobe Flash Player end-of-life information. (adobe.com)

Short, modern workflow (starter): design your banner in Photoshop using artboards and clearly named layers; export assets with File > Export (Export As / Quick Export / Export Layers To Files) so each image is trimmed and optimized; then animate in whichever output fits your target — CSS keyframes or a JS library for lightweight in-page banners, Adobe Animate to publish an HTML5 Canvas package for timeline work, or After Effects + Bodymovin/Lottie for small, vector-based animations. Use animated GIF or MP4 when you must deliver a single file for social/ads. See Photoshop export options, CSS animation guidance, Animate HTML5 publishing, and Lottie tooling for details. ()

A tiny, copy-pasteable example to illustrate a CSS-based approach (slide-in text over an image exported from Photoshop):

.banner { width:728px; height:90px; overflow:hidden; position:relative; }
.banner .text { position:absolute; animation:slide 6s infinite; }
@keyframes slide {
  0%   { left:100%; opacity:0; }
  10%  { left:0;   opacity:1; }
  40%  { left:0;   opacity:1; }
  50%  { left:-100%; opacity:0; }
  100% { left:-100%; opacity:0; }
}

This uses CSS keyframes (simple, performant, widely supported). (developer.mozilla.org)

Troubleshooting and practical tips: name layers before export; use Photoshop’s Export Layers To Files or Generator/Asset workflow to automate exports and trimming; pack bitmaps into a spritesheet to reduce requests; compress PNG/JPGs and check high-DPI scaling; test across browsers and mobile; and confirm delivery constraints (ad networks and CMS often ban Flash or enforce tight file-size limits). Start by following the visual-effect tutorials pointed to, then move from PSD assets into an HTML5/CSS or Lottie workflow for deployment. ()

Recommended Answers

All 5 Replies

your want create a banner or any help in photoshop to create banner in photoshop

yeah
been trying to read some tutorials but they aint of any help




http://www.entheosweb.com/
http://www.webdesign.org/
http://www.templatemonster.com/


Check above website for create dynamic web banner in photoshop

Thanks dear,
Am learning sth will let you know of my progress

it's OK

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.